Created
August 18, 2011 08:45
-
-
Save rentalcustard/1153676 to your computer and use it in GitHub Desktop.
Sofa Control applescript for controlling Showoff presentations in Google Chrome
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
(* | |
Copyright 2011, Tom Stuart | |
Description: Simple pass through of left/right arrows for Showoff | |
Author: Tom Stuart | |
Mapping: | |
* Left/Right: Left/Right arrow keys | |
*) | |
on rcRight() | |
tell application "System Events" to key code 124 | |
end rcRight | |
on rcLeft() | |
tell application "System Events" to key code 123 | |
end rcLeft | |
on rcForIcon() | |
tell application "Google Chrome" | |
end tell | |
end rcForIcon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment