Skip to content

Instantly share code, notes, and snippets.

@brandonpittman
Last active March 30, 2021 07:49
Show Gist options
  • Save brandonpittman/5994734 to your computer and use it in GitHub Desktop.
Save brandonpittman/5994734 to your computer and use it in GitHub Desktop.
Batch Rename Evernote Notes
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
@zurdors
Copy link

zurdors commented Jul 2, 2015

Thanks, @brandonpittman. It's exactly what I was looking for!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment