los clips de pelicula creados con FOR no. ¿Por que ocurre esto?
Código:
BOTONES = new Array("uno", "dos", "tres", "cuatro", "cinco", "seis", "siete", "ocho");
ClipCONTENT = new Array ("CLIPuno", "CLIPdos", "CLIPtres", "CLIPcuatro", "CLIPcinco", "CLIPseis", "CLIPsiete", "CLIPocho");
trace(ClipCONTENT.length);
this.createEmptyMovieClip('shell_mc', 100);
this.shell_mc.loadMovie('portfolio.swf');
var myDepth=100
for (var i = 0; i<ClipCONTENT.length; i++) {
trace(BOTONES[i]);
this.createEmptyMovieClip(ClipCONTENT[i], myDepth);
this.ClipCONTENT[i].loadMovie('portfolio.swf');
myDepth++;
trace(myDepth);
}

