how to read xml nodes in as3.....
Hi i m able to read xml node's attribute but i required to save whole node value to my movieclip object here my xml
<xml>
<node thumb='images/t1.jpg' bigswf='images/t1.swf' catagoery='t1 link' link='tl.xml'/>
<node thumb='images/t2.jpg' bigswf='images/t2.swf' catagoery='t2 link' link='t2.xml'/>
<node thumb='images/t3.jpg' bigswf='images/t3.swf' catagoery='t3 link' link='t3.xml'/>
</xml>
when i trace xml.node[0].@thumb then i got output>>images/t1.jpg
how can i get value of full node like this >>> <node thumb='images/t1.jpg' bigswf='images/t1.swf' catagoery='t1 link' link='tl.xml'/>
I m trying xml.node[0] but it shows nothing...