I have 16 layers of movieclips (one in each layer), each has been given the instance name, “line1” through to “line 16”. I’m trying to figure out how to hide all of them through actionscript, so far, my code is:
for(x=1; x<17; x++){
line[x]._visible = false;
}
but for some reason, it doesn’t hide all the instances. I’ve tried typing it in seperatly, (line1._visible = false; , line2._visible = false; , etc…) and it works, but for some reason, when I use the for loop, it doesn’t work…what am I doing wrong?