Tema: Carga de XML
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/03/2007, 13:41
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
Re: Carga de XML

por que estas cargando la informacion en los textos antes de que el XML este cargado

Código:
stop ();
function ini ()
{
	trace ("cargado");
	trace (obj_xml.firstChild.childNodes [0].firstChild.nodeValue);
	asunto_txt.text = obj_xml.firstChild.childNodes [0].firstChild.nodeValue;
	destino_txt.text = obj_xml.firstChild.childNodes [1].firstChild.nodeValue;
	cuerpo_txt.text = obj_xml.firstChild.childNodes [2].firstChild.nodeValue;
	remitente_txt.text = obj_xml.firstChild.childNodes [3].firstChild.nodeValue;
	nextFrame ();
}
var obj_xml : XML = new XML ();
obj_xml.load ("menu.xml");
obj_xml.onLoad = ini;
obj_xml.ignoreWhite = true;