The answer to this thanks frankhermes and www.Flextras.com for aiding my learning is in order to continue to traverse there is the need to add another namespace of ATOM into the xml to keep traversing
var entries = this.docXML.ATOM::entry;
trace(entries[3].content.length());
should be
var entries = this.docXML.ATOM::entry;
trace(entries[3].ATOM::content.length());
manpreet
Best Answer
2 years ago
I am trying to be able to load all XML data from an XML document and have been failing all night on it even with research
Here is a snippet of the XML I am trying to load:
Here is a snippet of the AS3 code I am puzzled on in the XmlLoader: