Hello. I’m trying to figure out how to use XML to load images on a movie clip. This is what I have so far…
**
This is my xml structure: **
<root><picThumb>images/picThumb1.png</picThumb>
<picThumb>images/picThumb2.png</picThumb>
…
…
</root>
** AS3 code structure: **
var myXML:XML= new XML();
var myURL:URLRequest= new URLRequest(“pictures.xml”);
var myLoader:URLLoader= new URLLoader(myURL);
myLoader.addEventListener(Event.COMPLETE, loadXML);
function loadXML(externalxml:Event):void {
myXML.ignoreComments=true;
myXML.ignoreWhitespace=true;
myXML=new XML(externalxml.target.data);
parseXML(myXML);
}
function parseXML(flashxml:XML):void {
showContent(flashxml);
}
function showContent(parsedxml:XML) {
var myXLIST:XMLLIST= parsedxml.children();
var allthumbs:MovieClip= new MovieClip();
allthumbs.name= “allthumbs”;
addChildAt(allthumbs, 0);
//I’m stuck here. How can I use XML to load
//pictures into “allthumbs” with a for loop?
}