to change xml data to ArrayCollection
Posted
by krishna
on Stack Overflow
See other posts from Stack Overflow
or by krishna
Published on 2010-06-03T08:37:38Z
Indexed on
2010/06/03
15:34 UTC
Read the original article
Hit count: 323
I have xml file with data as below and i want to convert this into Flex ArrayCollection including the id and name of the tags. I am using httpService to get the file.
data.xml
<data>
<result month="Jan" value="0.666">
<info id="jan01Display" name="jhon" age="20" />
<info id="jan02Display" name="adams" age="24" />
<info id="jan03Display" name="prasad" age="27" />
</result>
</data>
© Stack Overflow or respective owner