I have several mc’s and try to give them invisible.
Instead of repeating the whole process of _visible.
Here’s what I did
var tab_temp:Array = [bird_great_blue_mc,crabs_mc,sea_oysters_mc,sea_rockfish_mc,herring_mc];
for(i=0;i<tab_temp.length;i++) {
tab_temp*._visible = false;
}
Is there another better way to make it?