Created
June 15, 2015 15:10
-
-
Save benwaldie/db2a6c55451301709738 to your computer and use it in GitHub Desktop.
Create and tag note in Evernote
This file contains 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" | |
activate | |
set theNote to create note with text "ABC" | |
set tags of theNote to {tag "Tag 1", tag "Tag 2"} | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, Ben! Totally works. I had the tags in a list, so I just had to loop through and make a new list that marks them as "tags" and then it was fine: