Re: Quickeys shortcut from Filemaker Pro
Re: Quickeys shortcut from Filemaker Pro
- Subject: Re: Quickeys shortcut from Filemaker Pro
- From: Nigel Smith <email@hidden>
- Date: Thu, 08 Jul 2004 13:15:49 +0100
On 8/7/04 10:33, "Nigel Nixon" <email@hidden> wrote:
>
I have been advised from a number of sources that either of the
>
following applescripts should do the job:
>
>
tell application quickeys
>
activate
>
play shortcut named "name of shortcut"
>
end tell
>
>
tell application quickeys
>
play shortcut named "name of shortcut"
>
end tell
>
>
>
However the Script Editor does not like the syntax...
You need to put the name of the application you are "telling" in quotes,
since it is a string (you currently have it as a variable named quickeys):
tell application "QuicKeys"
play shortcut named "name of shortcut"
end tell
HTH,
Nigel
_______________________________________________
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.