On my project I have a list of book types. My boss wants me to draw from an XML file the number of books according to type. For example, at the end of my button link to "Fiction" it should read the number of fiction books from the XML file they will provide.
Fiction (233)
My XML structure is like this:
Code:
<BOOKS>
<FICTION>233</FICTION>
<NONFICTION>143</NONFICTION>
<BOOKS>
I've searched and searched, I can find out how to PUT the information into the file, but how do I get it to be shown in Flash? That is, I want the "233" to be drawn dynamically from the XML file and listed in type on the screen. Any ideas?
Thanks!