Skip to content

Instantly share code, notes, and snippets.

@torbjornvatn
Created December 16, 2011 08:36
Show Gist options
  • Save torbjornvatn/1485156 to your computer and use it in GitHub Desktop.
Save torbjornvatn/1485156 to your computer and use it in GitHub Desktop.
Wimp play/pause
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