I just read the great tutorial on reading external XML data into a dynamic text box here…
http://www.kirupa.com/developer/actionscript/xmldataflash.htm
What I would like to do is take a xml document with 4 nodes per item and display the entire thing inside 1 scrolling dynamic text box. I tried taking out the nodes like this…
original…
_root.inventor = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
modified
_root.inventor = this;
but it displays everthing - the tags included and I just want the info inside the tag to be shown, EX: <item> red </item> - I only want the “red” to be displayed.
Can anyone help me out?
Thanks.