Last active
November 30, 2015 09:20
-
-
Save paulate/868e71592276995ea651 to your computer and use it in GitHub Desktop.
Mail.app Applescript / Automator Service "reply" workaround - read about it here http://blog.itshunkydory.com/post/134258384314/mailapp-reply-hack
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
| tell application "Mail" to activate | |
| tell application "System Events" | |
| tell process "Mail" | |
| keystroke "r" using {command down, shift down} | |
| delay 1 | |
| keystroke tab using shift down | |
| keystroke tab using shift down | |
| keystroke "a" using command down | |
| keystroke "x" using command down | |
| keystroke tab using shift down | |
| keystroke "v" using command down | |
| keystroke tab | |
| keystroke tab | |
| keystroke tab | |
| end tell | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment