Created
December 16, 2011 08:36
-
-
Save torbjornvatn/1485156 to your computer and use it in GitHub Desktop.
Wimp play/pause
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Dock" | |
activate | |
end tell | |
tell application "System Events" | |
tell process "Dock" | |
set frontmost to true | |
activate | |
tell list 1 | |
perform action "AXShowMenu" of UI element "Wimp" | |
delay 1 | |
repeat 7 times -- count number of items to the one you want | |
key code 126 -- up arrow | |
-- key code 125 -- down arrow | |
end repeat | |
delay 1 | |
repeat 1 times | |
key code 36 -- return key | |
end repeat | |
end tell | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment