Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/04/2007, 08:06
Avatar de jair20x
jair20x
 
Fecha de Ingreso: noviembre-2005
Ubicación: Madrid - España
Mensajes: 532
Antigüedad: 18 años, 5 meses
Puntos: 1
Re: doble salto de linea en xml

esta es la manera como llamo los datos

function efectuar(gen:Number) {
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.load("datos.xml");
xml.onLoad = function() {
titulo = xml.firstChild.childNodes[gen].attributes.titulo;
dato1 = xml.firstChild.childNodes[gen].attributes.dato1;
dato2 = xml.firstChild.childNodes[gen].attributes.dato2;
dato3 = xml.firstChild.childNodes[gen].childNodes[gen];
};
}

Espero su ayudaaa