no se si este Actionscript que le voy a poner va a ayudar para su respuesta:
Código:
Si hacese falta mas info pidanla haci la pongovar filename_list = new Array(); var url_list = new Array(); var url_target_list:Array = new Array(); var title_list = new Array(); var description_list = new Array(); var filepath:String = "photos/"; 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); url_target_list.push(nodes[i].attributes.target); title_list.push(nodes[i].attributes.title); description_list.push(nodes[i].attributes.description); } } flashmo_xml.load("flashmo_120_product_list.xml");
GRACIAS