Código :
var numeracio:Number = 0;
for (z=0; z<=2; z++) {
for (i=0; i<=2; i++) {
numeracio++;
trace(\"numero\"+numeracio)
attachMovie(\"foto_in\",this[\"foto\"+numeracio],this.getNextHighestDepth(),{_x:(60*i), _y:(60*z)});
loadMovie(\"img/\"+(numeracio+1)+\".jpg\", \"foto\"+numeracio+\".buit\");
//loadMovie(\"img/\"+(numeracio+1)+\".jpg\", \"_\"+(numeracio+1));
this[\"foto\"+numeracio].onRelease = function() {
//loadMovie(\"img/\"+this.me+\"g.jpg\", foto.cargador);
};
this[\"foto\"+numeracio].onRollOver = function() {
this.gotoAndStop(2);
};
this[\"foto\"+numeracio].onRollOut = function() {
};
}
}
Creo que el problema es que cuando va hacer el loadMovie todavia no esta listo el attachMovie.Hago la prueba y coloco moviclips vacios manualmente y direcciono el LoadMovie alli y funciona.Como que tarda tanto el attach??
