el codigo va así:
// el campo de texto (lleva un scroll pegado al lado)
msg_mc.mensaje_txt.border = true;
msg_mc.mensaje_txt.borderColor = 0x666666;
msg_mc.mensaje_txt.background = false;
msg_mc.mensaje_txt.backgroundColor = fondotexto;
msg_mc.mensaje_txt.type = "dynamic";
msg_mc.mensaje_txt.maxChars = 2000;
msg_mc.mensaje_txt.selectable = false;
msg_mc.mensaje_txt.textColor = 0x999999;
//creamos objeto xml
var my_xml = new XML();
my_xml.ignoreWhite = true;
//se cargan los datos
my_xml.load("fuentedatos/listado.xml");
my_xml.onLoad = function() {
msg_mc.mensaje_txt.text = my_xml.firstChild.childNodes[4].childNodes[0].childNodes;
};
atte.
