Created
April 1, 2010 07:48
-
-
Save soh335/351526 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
on startRecord() | |
action("1") | |
end startRecord | |
on stopRecord() | |
action("2") | |
end stopRecord | |
on action(src) | |
tell application "iShowU HD" | |
activate | |
end tell | |
tell application "System Events" | |
if UI elements enabled then | |
key down command | |
keystroke src using {command down, shift down} | |
key up command | |
end if | |
end tell | |
end action |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment