23/01/2008, 04:56
|
| | | Fecha de Ingreso: enero-2008 Ubicación: Vigo
Mensajes: 78
Antigüedad: 16 años, 10 meses Puntos: 0 | |
Re: Longitud de XML Dificil saber la longitud si intentas verla antes de que cargue.
miXML = new XML();
miXML.ignoreWhite = true;
miXML.onLoad = function(leer) {
if (leer) {
i = 0;
nodosxml();
} else {
trace("No se puede leer el archivo XML");
} longitud = miXML.firstChild.childNodes.length;
trace(longitud);
};
function nodosxml() {
txtmanzana = miXML.firstChild;
txtidentificador = miXML.firstChild.childNodes[i];
txtnumero = txtidentificador.childNodes[0].attributes.id;
txtfotoalzado = txtidentificador.childNodes[1].attributes.id;
}
miXML.load("fotoalzados.xml") |