Last active
March 30, 2021 07:49
-
-
Save brandonpittman/5994734 to your computer and use it in GitHub Desktop.
Batch Rename Evernote Notes
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 "Evernote" | |
set the_notes to selection | |
set the_dialog to display dialog "What would you like to title these notes?" default answer "" | |
set the_title to text returned of the_dialog | |
set the_count to 1 | |
repeat with n in the_notes | |
set title of n to the_title & " " & the_count | |
set the_count to the_count + 1 | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, @brandonpittman. It's exactly what I was looking for!