Created
July 18, 2013 19:41
-
-
Save brettkelly/6032371 to your computer and use it in GitHub Desktop.
Super simple AS to create a new stub meeting note 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
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