Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GUI TextEdit



Philip Aker wrote on Sat, 2 Jun 2007 07:06:50 -0700:

>Both excellent points. I think you'll have to watch for setting the  
>".rtf" extension though because the original may be something else.
>
>>  on TESaveAs(theKind, theTitle)
>>     tell application "TextEdit" to activate
>>     tell application "System Events" to tell application process  
>> "TextEdit" to tell window 1
>>       keystroke "s" using {command down, shift down}
>>       repeat until (sheet 1 exists)
>>         delay 0.2
>>       end repeat
>>       tell sheet 1
>>         set value of text field 1 to (theTitle & ".rtf")

Hmmm. Yes. You're right. When I was experimenting this morning, the
".html" extension replaced the extension given didn't appear unless there
_was_ an extension to replace. Now it's appended to whatever's entered.
We-irrd....  :\

So the full handler should be:

  on TESaveAs(theKind, theTitle)
    tell application "TextEdit" to activate
    tell application "System Events" to tell application process
"TextEdit" to tell window 1
      keystroke "s" using {command down, shift down}
      repeat until (sheet 1 exists)
        delay 0.2
      end repeat
      tell sheet 1
        set value of text field 1 to theTitle
        tell group 1 to tell pop up button 1
          click
          repeat until (menu 1 exists)
            delay 0.2
          end repeat
          click menu item theKind of menu 1
          repeat while (menu 1 exists)
            delay 0.2
          end repeat
        end tell
        click button "Save"
      end tell
    end tell
  end TESaveAs
  
  TESaveAs("HTML", "Acme-Sales-2007-05")


NG

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/applescript-users/email@hidden
Archives: http://lists.apple.com/archives/applescript-users

This email sent to email@hidden

References: 
 >Re: GUI TextEdit (From: "Nigel Garvey" <email@hidden>)
 >Re: GUI TextEdit (From: Philip Aker <email@hidden>)



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.