pero a la hora de llenar el texto no se como imprimir todos los valores del xml
este es mi codigo
Código :
var theXML:XML = new XML();
theXML.ignoreWhite = true;
area.wordWrap=true;
theXML.onLoad = function() {
var nodes = this.firstChild.childNodes;
for(i=0;i<nodes.length;i++) {
area.text=theXML.firstChild.childNodes[0].firstChild.nodeValue+"\n"+
theXML.firstChild.childNodes[1].firstChild.nodeValue+"\n"+
theXML.firstChild.childNodes[2].firstChild.nodeValue+"\n";
}
}
theXML.load("http://localhost:8080/flash/products.php");gracias de antemano por su ayuda
