estoy haciendo un sitio web en el cual he aplicado muchas de las cosas que aqui se enseñan
este es el codigo de AC:
/////////////////////////////////////////////////////////////////////////////////
var obj_xml:XML = new XML();
obj_xml.ignoreWhite = true;
System.useCodepage=true;
obj_xml.onLoad = function(exito) {
if (exito) {
pregunta.text = obj_xml.firstChild.childNodes[0].firstChild.nodeValue;
} else {
cuerpo_txt.text = "Error";
}
};
cargarXML();
function cargarXML() {
obj_xml.load("noticias/pregunta.xml");
}
/////////////////////////////////////////////////////////////////////////////////
y este el XML
<pregunta>
<preg>¿Que te parece la nueva propuesta del sitio Web de la FADP?</preg>
</pregunta>
///////////////////////////////////////////////////////////////////////////////////
Si quieren ver el caracter extraño esta en:http://www.fadp.edu.co/nfadp , en la parte de abajo en el lapiz.
