This content has been marked as final.
Show 3 replies
-
1. Re: hide all movieclips and reveal only those you need
kglad Jan 3, 2012 4:23 PM (in response to cactus8599)yes:
function hideAllF(parent_mc:MovieClip):void{
for(var i:int=0;i<parent_mc.numChildren;i++){
parent_mc.getChildAt(i).visible=false;
}
}
-
2. Re: hide all movieclips and reveal only those you need
cactus8599 Jan 4, 2012 4:35 PM (in response to kglad)thank you!
-
3. Re: hide all movieclips and reveal only those you need
kglad Jan 4, 2012 8:40 PM (in response to cactus8599)you're welcome.


