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;