Skip to content

Instantly share code, notes, and snippets.

@setoh2000
Created August 5, 2012 13:01
Show Gist options
  • Save setoh2000/3264647 to your computer and use it in GitHub Desktop.
Save setoh2000/3264647 to your computer and use it in GitHub Desktop.
Mac版のEvernoteクライアントでSmartEverタグの付いたノートを作成するAppleScript
-- 2行目でタイトル、本文、ノートブックを指定してください
tell application "Evernote"
set note1 to create note title "Hello World!" with text "" notebook "TestNotebook"
set tag1 to tag "SmartEver"
assign tag1 to note1
open note window with note1
end tell
@setoh2000
Copy link
Author

詳しくはこの辺りを見てください。。
http://dev.evernote.com/intl/jp/documentation/local/chapters/Mac.php

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