I have nine movie clips (out1_mc,out2_mc...) that need to be invisible when loading the swf....
So, instead of listing off ._visible = false for all of them I decided to make a loop. Unfortunately I am having issues...
Here is what I have, which doesn't return an error. Any help with this would be much appreciated. Thanks!
x=0;
for(y=0;y<9;y++) {
x+=1;
var holder = "out"+x+"_mc";
holder+"._visible = false";
}







Bookmarks