Is there an action script that just pauses a game... Im not looking for a stop(); action obviously.
If you could share one with me that would be great i couldnt find it in MAIN
Is there an action script that just pauses a game... Im not looking for a stop(); action obviously.
If you could share one with me that would be great i couldnt find it in MAIN
It all depends on how your game works.
No one can tell you exactly how to put a pause button in.
Basically, you want to stop your main game running script from running. Then, if you want it to be a true pause, run a stop() on all of your object MovieClips.
if you add this on the topp of your codes
if(pause==false){
and you change pause to true when its pauseing..
then your code wont execute when its paused!!