Unable to get XML node tracking information :(

it should be a very simple trace ... but I have no idea why it is not working.

My XML is  old ...

+3
source share
2 answers
for each(var vidXml:XML in xmlData.col[0].vid.*) {
    trace("loop # = "+vidXml);
    aNewTextArray.push(vidXml);
}

^ Try this

+1
source

Have you tried this?

trace("Where is my text? = "+xmlData.col.(@id1 == 'Photography').vid.*);
+1
source

Source: https://habr.com/ru/post/1718841/


All Articles