greasy pete
New Member
I'm trying to parse the tags in an EverNote .enex file (it's just XML), using AppleScript. Here's a snippet from the file I want to parse:\[code\]<note>...<tag>Foo</tag><tag>Bar</tag>...</note>\[/code\]And here's the AppleScript code that I have (where theNote is a reference to the current <note> in the XML tree which I'm iterating through):\[code\]set theTags to (value of XML element named "tag" of theNote) as string\[/code\]I'd like theTags to be a list: (Foo, Bar). Hopefully there's a simple way to do this, and I'm just missing it?