Skip to content

Instantly share code, notes, and snippets.

@rashita
Last active January 4, 2016 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rashita/8611412 to your computer and use it in GitHub Desktop.
Save rashita/8611412 to your computer and use it in GitHub Desktop.
Evernoteのノートブック名を取得するサブルーチン。ただし、順番はばらばら。
on getnotebookName()
set notebookList to {}
tell application "Evernote"
set notebookList to name of notebooks
(*
repeat with temnotebook in notebooks
set notebookName to name of temnotebook
set end of notebookList to notebookName
end repeat
*)
end tell
return notebookList
end getnotebookName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment