Created
December 18, 2015 13:29
-
-
Save greenbicycle/ec7520fb61afeb89631a to your computer and use it in GitHub Desktop.
Evernote Account Statistics
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" | |
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