I’m struggling to find any info that can help me get this toggle button. I’m trying to get this function to target myClip_mc and move the frame head to another frame label.
var counter:Number = 1;
//textBeGone
invisible_btn.onRelease = function(){
counter++;
if(counter % 2 = true) {
_root.myClip_mc.gotoAndPlay(“fadeOut”);
}else if(counter % 1 = true) {
_root.myClip_mc.gotoAndPlay(1);
}
};