Created
May 7, 2015 06:50
-
-
Save madvas/2669f893f1bce329161a to your computer and use it in GitHub Desktop.
Applescript command + Tab function
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
on cmdTab() | |
tell application "System Events" | |
key down command | |
keystroke tab | |
key up command | |
end tell | |
end cmdTab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment