Tengo una botonera hecha en flash, que carga su info a través de un archivo XML.
Los botones cargan perfecto, pero el link que tienen asignado es a un HTML, y yo estoy usando esta botonera dentro de un archivo flash para cargar SWF en una MC llamado "contenedor".
- El codigo de cada boton XML es:
Código XML:
Ver original
<menuItem titleName="GNV GROUP OFICINAS" link="oe/oe_1.swf" window="contenedor" >
- El actionscript que hace referncia al link dice:
Código Actionscript:
Ver original
//in this loop we start filling the first three arrays we just mentioned with the rest //of the information in the nodes of the XML file for(i = 1; i < my_xml.firstChild.childNodes.length; i++){ arrTitles.push(my_xml.firstChild.childNodes[i].attributes.titleName); arrLinks.push(my_xml.firstChild.childNodes[i].attributes.link); arrWindows.push(my_xml.firstChild.childNodes[i].attributes.window); }
Yo ya habia hecho reemplazando el link url por un "load movie", pero en este caso no se como cambiarlo....
Muchas gracias desde ya!