Skip to content

Instantly share code, notes, and snippets.

@brandonpittman
Last active August 8, 2016 20:21
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save brandonpittman/5641694 to your computer and use it in GitHub Desktop.
Save brandonpittman/5641694 to your computer and use it in GitHub Desktop.
This AppleScript will append text to the title of the selected notes in Evernote.
tell application "System Events"
set the_dialog to display dialog "What would you like to append to the selected notes?" default answer ""
set append_text to text returned of the_dialog
end tell
tell application "Evernote"
set theNotes to get selection
repeat with n in theNotes
set theTitle to title of n
set title of n to theTitle & " " & append_text
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment