Sera que debo hacer varias veces esto?
Cita: x=10;
y=18;
ancho=105;
alto=75;
miXML = new XML();
miXML.ignoreWhite = true;
miXML.onLoad = function(succes){
if(succes){
for(var i = 0; i<this.firstChild.childNodes.length; i++){
galeria = this.firstChild.childNodes[i].attributes.id;
_root.createEmptyMovieClip("diapo"+i, i+100);
item = _root["diapo"+i];
item.loadMovie(galeria);
item._x = x;
item._y = y;
x += ancho;
columna += 1;
if(columna == num_columnas){
columna = 0;
x -=(ancho*num_columnas);
y += alto;
}
}
}
};
miXML.load("imagenes.xml");