Skip to content

Instantly share code, notes, and snippets.

@pdxmph
Created October 12, 2013 19:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pdxmph/6953710 to your computer and use it in GitHub Desktop.
Save pdxmph/6953710 to your computer and use it in GitHub Desktop.
Gets selected Evernote note(s) and adds a reminder date to them (effectively turning them into todos)
set myRemind to (current date) + 1 * days
tell application "Evernote"
set myNotes to selection
repeat with theNote in myNotes
set the reminder time of theNote to myRemind
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment