i use actionscript 2.0. I need to get time string from this simple xml:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<time>
2011,01,25,10,58,02
</time>
</root>
I used
trace(_myXml.firstChild.firstChild.nodeValue);
trace(_myXml.firstChild.firstChild[0].nodeValue);
trace(_myXml.firstChild.nodeValue);
but it returns ever undefined...
what's wrong?
Is there a way to access xml like: _myXml.root.time.value ?
thanks.