Ver Mensaje Individual
  #7 (permalink)  
Antiguo 15/04/2008, 09:50
Avatar de oppjpp
oppjpp
 
Fecha de Ingreso: octubre-2007
Mensajes: 304
Antigüedad: 16 años, 6 meses
Puntos: 2
Re: Problema para ver pelicula SWF en IE7

te pongo el codigo para q lo veas

Cita:
photo_filename = new Array();
photo_thumbnail = new Array();
photo_description = new Array();

filepath = "/fotos/";

// Load the photos XML
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++)
{
photo_filename.push(nodes[i].attributes.filename);
photo_thumbnail.push(nodes[i].attributes.thumbnail);
photo_description.push(nodes[i].attributes.description);
}

}
flashmo_xml.load(filepath + "/1.xml");