Skip to content

Instantly share code, notes, and snippets.

@brettkelly
Created July 18, 2013 19:41
Show Gist options
  • Save brettkelly/6032371 to your computer and use it in GitHub Desktop.
Save brettkelly/6032371 to your computer and use it in GitHub Desktop.
Super simple AS to create a new stub meeting note in Evernote.
set myNotebook to "@Inbox"
set myTags to {"to_process"}
set myTitle to "Meeting Notes with "
set myContent to ""
tell application "Evernote"
set myNote to create note title myTitle with text myContent notebook myNotebook tags myTags
delay (1) -- give the note a sec to save
open note window with myNote
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment