multiple xml files linking in flash8

webmasterbeta

New Member
Hi,
i have made a flash doc which uses xml and AScript. I am trying 2 use 2 xml in the same document. For the 1st i've ritten:
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("images.xml");

Now, i was trying to do something and i tried to use anothe xml file. But then how should i call the new xml in the same fla. Won't the 2 conflict if i rite"
xmlNode = this.firstChild;
etc...
?
 
Back
Top