Lo que necesito es modificarlo para que carge las imagenes directamente desde la carpeta sin el XML.filename_list = new Array();
url_list = new Array();
description_list = new Array();
filepath = "Aleatorio/";
var flashmo_xml = new XML();
flashmo_xml.ignoreWhite = true;
flashmo_xml.onLoad = function()
{
var nodes:Array = this.firstChild.childNodes;
for(var i=0;i<nodes.length;i++)
{
filename_list.push(nodes[i].attributes.filename);
url_list.push(nodes[i].attributes.url);
description_list.push(nodes[i].attributes.description);
}
}
flashmo_xml.load("Aleatorio.xml");
Muchas gracias de antemano.