actionscript 2.0 XML to ARRAY?
Hello,
I would like to get data into array from XML file like below;
My XML file ;
<myxml>
15
25
30
56
</myxml>
And i want array in actionscript which contain numbers in xml
array = ['15','25',30','56'];
How can i do that with actionscript ?