Skip to content

Instantly share code, notes, and snippets.

@greenbicycle
Created December 18, 2015 13:29
Show Gist options
  • Save greenbicycle/ec7520fb61afeb89631a to your computer and use it in GitHub Desktop.
Save greenbicycle/ec7520fb61afeb89631a to your computer and use it in GitHub Desktop.
Evernote Account Statistics
tell application "Evernote"
set AccountName to (name of current account)
set numberOfTags to count of tags
set numberOfNoteBooks to count of notebooks
set numberOfNotes to count of (find notes "*")
set strMessage to "Account Name: " & strAcctName & return & ¬
return & "Num of Notes: " & numNotes ¬
& return & "Num of Notebooks: " & numNB ¬
& return & "Num of Tags: " & numTags
set strMessageTitle to "Evernote Mac Account Statistics"
display dialog strMesssage with title strMessageTitle ¬
with icon caution
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment