no se si esta bien pero tiene que emplear la funcion duplicate o atachmovie
Código PHP:
x = 275;
y = 3;
ancho = 50;
alto = 60;
miXML = new XML();
miXML.ignoreWhite = true;
miXML.onLoad = function(succes) {
if (succes) {
for (var i = 0; i<this.firstChild.childNodes.length; i++) {
small = this.firstChild.childNodes[i].attributes.id;
_root.createEmptyMovieClip("small"+i,i+100);
_global.numImg = i;
//Este es el boton que quiero duplicar
var newBoton=mcputo.duplicateMovieClip("BTonn-"+i,this.getNextHighestDepth());
newBoton.onRelease = function() {
_global.imag = _global.numImg;
_parent.mcbig.gotoAndStop(2);
};
newBoton._y=100*i //esto es para que lo veas sino aparecen uno sobre otro
//Aqui termina el boton que quiero duplicar
prev = _root["small"+i];
prev.loadMovie(small);
prev._x = x;
prev._y = y;
y += alto;
}
}
};
miXML.load("home.xml");