XML text in Flash
XML text in Flash
Out of context: Reply #5
- Started
- Last post
- 6 Responses
- chimchim0
well...you don't need to parse your xml into a massive series of custom objects if you simply refer to stuff by it's node index..for instance...
just keep track of the tree to path from root to your desired node...and you will be fine...
myXML.firstChild.childNodes[2].c...
or something like that