09/08/2007, 02:45
|
| | | Fecha de Ingreso: julio-2004 Ubicación: Mallorca (Illes Balears)
Mensajes: 1.121
Antigüedad: 20 años, 4 meses Puntos: 12 | |
Re: Acceder con actionscript a fichero XML
Código:
var xml:XML = new XML();
xml.onLoad = function() {
trace(this.childNodes[0].childNodes[0].childNodes[3].firstChild.nodeValue);
};
xml.load("documento.xml");
Saludos! |