I have a list called theNodesENTRYFULL (see attached pic)
I would like to repeat through the list with each entry
and get a list of all of the NSXMLElement Names.
eg
ITEM1:
{“ENTRY”, “LOCATION”, “ALBUM”, “MODIFICATION_INFO”, “INFO”, “TEMPO”}
ITEM2:
{“ENTRY”, “LOCATION”, “ALBUM”, “MODIFICATION_INFO”, “INFO”, “TEMPO”, “LOUDNESS”, “MUSICAL_KEY”, “CUE_V2”}
etc
First, you want arrays rather than lists. Then something like:
set theList to {}
repeat with anArray in theNodesENTRYFULL
set end of theList to (anArray's valueForKey:"name") -- add "as list" if you want a list
end repeat