I am using Flash 8 for a project on which I am getting data from an XML file. I am loading the file via Actionscript. The file looks like this:
<books>
<no>1</no>
<author>Sussy Awe</author>
<ref>Library</ref>
<no>2</no>
<author>Frank Pity</author>
<ref>Attic</ref>
</books>
I am getting a "no" value from another file and want to use the "no" value to convert elements of the node that has a corresponding value to variables. Once I get the variables, I would like to close the XML file. What's the solution, please? Thanks.
<books>
<no>1</no>
<author>Sussy Awe</author>
<ref>Library</ref>
<no>2</no>
<author>Frank Pity</author>
<ref>Attic</ref>
</books>
I am getting a "no" value from another file and want to use the "no" value to convert elements of the node that has a corresponding value to variables. Once I get the variables, I would like to close the XML file. What's the solution, please? Thanks.