I have an "intro" screen and I have a "play" screen.
As the intro screen starts it sets the play screen visible = false;
First the intro screen shows itself and the user has to press a button to go to the play screen, once the play screen shows itself actionscript moves a graphic from right to left.
The problem is that even when the play screen visible is false, it is still executing the actionscript (timers/enterframes etc)
is there some way to set the actionscript so that if self.visible==false dont play?
Please note that I am new to AS3/Flash and the code is in the movieclip itself not in a class.