Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/08/2007, 02:45
Avatar de Mahalo
Mahalo
 
Fecha de Ingreso: julio-2004
Ubicación: Mallorca (Illes Balears)
Mensajes: 1.121
Antigüedad: 19 años, 9 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!