Hi
I am trying to get my head round learning some XML. I have an XML file as below:
<?xml version="1.0" encoding="iso-8859-1"?>
<main>
<famliy1>
<family name="Smiths" />
</family1>
<famliy2>
<family name="Jones" />
</family2>
</main>
How do I go about accessing the family name values in flash if I have the basic setup for loading XML files such as:
var myXML = new XML();
myXML.ignoreWhite = true;
myXML.onLoad = function (){
Need Help with what goes here
}
myXML.load(“the_xml.xml”);