new in flash :-s need to Show/Hide movieclip using check box in flash using this code on check box (if checked then show MC else hide) where mc1 is movieclip instance name but not working :-s
You need to use a boolean value for _visible function. Example: (add this actionscript in a frame) : ButtonName.onRelease = function(){ MovieClipName._visible=true; } If you use actionscript on a button use this code : on(release){ MovieClipName._visible=true; }