| Menu Scripts |
These four scripts control the GenieCommands.app - goto next menu, goto previous menu, goto next menu item and goto previous menu items.
tell application "GenieCommands"
do script FileMaker script "itemNext"
end tell
|
| RunMenuItem |
This script tells the GenieCommands.app to run the highlighted menu item.
tell application "GenieCommands"
do script FileMaker script "Run Menu Item"
end tell
|
| Quit and launch GC |
The manual equivalent is to hit the "STOP" button on the remote has been set up to quit the frontmost application and the "*" is set to activate GenieCommands.
tell application "System Events"
key down {command}
keystroke "q"
key up {command}
tell application "GenieCommands"
activate
end tell
end tell
|
| Error Checking your Script |
The best solution for checking your scripts is to copy and paste them into a new window within the Script Editor program. Compile your script here and even run it from here, and when satisfied, copy and paste it back into Genie's Commands. Special note... make sure to "key up" all keys that have been "key down" otherwise your operating system will operate as if that key was
down. |