Last active
December 17, 2015 16:49
-
-
Save brandonpittman/5641676 to your computer and use it in GitHub Desktop.
This script will let you append text to the selected notes in Evernote.
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 "System Events" | |
set the_dialog to display dialog "What would you like to prepend to the selected notes?" default answer "" | |
set prepend_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 prepend_text & " " & theTitle | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment