Código PHP:
System.useCodepage=true;
var obj_xml:XML = new XML();
obj_xml.ignoreWhite = true;
obj_xml.onLoad = function(exito) {
if (exito) {
menu1.htmlText = obj_xml.firstChild.childNodes[0].firstChild.nodeValue;
menu2.htmlText = obj_xml.firstChild.childNodes[1].firstChild.nodeValue;
} else {
msg_txt.htmlText = "Error";
}
};
function cargarXML(menu) {
obj_xml.load(menu1);
}
En tres botones he puesto esto
Código PHP:
on(release)
{
cargarXML("menu1.xml");
}
Código PHP:
on(release)
{
cargarXML("menu2.xml");
}
Código PHP:
on(release)
{
cargarXML("menu3.xml");
}
Pero al dar click para activar al menu2.xml me sale las tetras extrañas.. especialmente en la parte donde apararece la tilde.. es decir al cargar los otros XML ya no me reconoce las tildes.. solamente me aparece a la primera vez... y si regreso a dar click en menu1.xml si aparece normal las tildes, pero en el rersto no sale nada... no aparece las tildes. ya use System.useCodepage=true; y <?xml version='1.0' encoding='UTF-8'?>
y me sale el mismo problema...
Alguien me puede ayudar.. de verdad se los pido.. ayuda pliss....
Saludos