I have been using Bruce Phillips XML code:
set xmlFile to (choose file) as Unicode text
tell application "System Events"
set titleValue to value of XML element "title" of XML element "channel" of XML element "rss" of contents of XML file xmlFile
display dialog "the title is " & titleValue
end tell
.to parse xml, but how do I parse items with multiple entries? For example: How can I read all items of object1 into an array?
1
2
3
I am new to applescript and appreciate any help you can give me!