Jump to content

How to Get List of All Tags in EM Mac Account


Recommended Posts

  • Level 5*

 

This topic seems to be closed now, but I just made an update to the script I posted.

Here is my revised script:

Script to List All Tags in EN Mac Account


### UPDATED 2017-03-20  7:57 PM CT ###

use AppleScript version "2.4" -- Yosemite (10.10) or later
use scripting additions

--—————————————
tell application "Evernote"
  --—————————————
  
  --- GET LIST OF ALL TAG OBJECTS IN EN ACCOUNT ---
  -- Each Tag Object has:
  --    name    -- Text name of Tag
  --    parent -- Parent Tag Object
  set tagList to tags
  
  --- GET NUMBER OF TAGS ---
  set numTags to count of tagList
  
  --- GET LIST OF TAG NAMES ---
  set tagNameList to name of every tag
  
end tell

 

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...