Skip to content

Instantly share code, notes, and snippets.

@paulate
Last active November 30, 2015 09:20
Show Gist options
  • Select an option

  • Save paulate/868e71592276995ea651 to your computer and use it in GitHub Desktop.

Select an option

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
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