Copy link to clipboard
Copied
Hi there.
I'm using Adobe Flash Professional CS6, and I'm making a game. I need to make the question frame goes to a "game over" frame, after waiting a required amount of time, or a time limit. I want to make it wait for 60 seconds, but the scripts are too complicated.
How can I realize that function and how is the script needed to add the time limit and to be exact and without errors?
This is trivial.
setInterval(function(){gotoAndStop("game over")}, 60000);
Copy link to clipboard
Copied
Moved out of the Forum Lounge and over to the Adobe Animate CC - General (formerly Flash Pro) forum.
Copy link to clipboard
Copied
This is trivial.
setInterval(function(){gotoAndStop("game over")}, 60000);
Copy link to clipboard
Copied
It worked. Thank you so much.