Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/08/2007, 12:27
Rizzo
 
Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 17 años, 7 meses
Puntos: 30
Re: Actions script

agrega

Código:
obj_xml.ignoreWhite = true;


Código:
var obj_xml:XML = new XML();

obj_xml.ignoreWhite = true;
obj_xml.onLoad = function() {
var imagen = obj_xml.firstChild.childNodes[0].firstChild.nodeValue;
_root.Print1.loadMovie(imagen)
};
obj_xml.load("texto.xml");