Re: GUI Scripting / Keystroke
Re: GUI Scripting / Keystroke
- Subject: Re: GUI Scripting / Keystroke
- From: Paul Berkowitz <email@hidden>
- Date: Thu, 12 Jun 2003 19:57:40 -0700
On 6/12/03 7:35 PM, "James Spahr" <email@hidden> wrote:
>
tell application "System Events"
>
>
tell process "Acrobat 6.0 Professional.app"
>
keystroke "o" with command and with shift down
>
end tell
>
>
end tell
>
>
>
>
obviously, this will not compile.
Remove the second 'with':
tell application "System Events"
tell process "Acrobat 6.0 Professional.app"
keystroke "o" with command and shift down
end tell
end tell
--
Paul Berkowitz
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.