Haz los pasos que te dije en el anterior post en un documento de AS2 y cambia el codigo por este:
Cita: System.useCodepage = true;
XML.prototype.ignoreWhite = true;
var obj_xml:XML = new XML();
obj_xml.ignoreWhite = true;
//
obj_xml.onLoad = function(exito) {
//
trace(obj_xml.firstChild.childNodes[0].attributes.nombre);
if (exito) {
trace("cargo");
} else {
trace("No cargo");
}
};
//
obj_xml.load("prueba.xml");
//
boton_btn.onRelease = function() {
ver_datos(0);
};
function ver_datos(i:Number) {
texto_txt.text = obj_xml.firstChild.childNodes[i].attributes.id+"----"+obj_xml.firstChild.childNodes[i].attributes.nombre+"----"+obj_xml.firstChild.childNodes[i].attributes.pcolor+"----"+obj_xml.firstChild.childNodes[i].attributes.cantidad;
}
estoy suponiendo que en tu archivo prueba.xml tienes esta estructura:
Cita: <?xml version="1.0" encoding="ISO-8859-1"?>
<pueblos>
<pueblo id="1" nombre="San Juan" pcolor="Amarillo" cantidad="100,000" />
<pueblo id="2" nombre ="Bayamon" pcolor="Rojo" cantidad="45,000" />
<pueblo id="3" pcolor="Verde" cantidad="564,990" />
</pueblos>