pause screen [AS2]
- trishan007
-
trishan007
- Member since: Dec. 25, 2010
- Offline.
-
- Forum Stats
- Member
- Level 05
- Blank Slate
is a pause screen simple to make as in if key down bla bla gotoAndPlay bla bla or is there more to it ?
- MichaelJ
-
MichaelJ
- Member since: Mar. 2, 2009
- Offline.
-
- Forum Stats
- Member
- Level 18
- Voice Actor
Blah? Seriously?
Making a pause screen can be really easy or really hard, depending on the game. Why don't you start out by giving an example of the game you are making?
- ProfessorFlash
-
ProfessorFlash
- Member since: Oct. 6, 2007
- Offline.
-
- Forum Stats
- Member
- Level 32
- Programmer
Yes making a pause screen is blabla bla and then just blabla bla but remember to blabla bla.
You can solve pretty much any problem you may have with AS3 by consulting the AS3 Language reference.
- trishan007
-
trishan007
- Member since: Dec. 25, 2010
- Offline.
-
- Forum Stats
- Member
- Level 05
- Blank Slate
At 8/22/11 02:58 PM, ProfessorFlash wrote: Yes making a pause screen is blabla bla and then just blabla bla but remember to blabla bla.
got it ;P
- scearezt
-
scearezt
- Member since: Aug. 23, 2009
- Offline.
-
- Forum Stats
- Member
- Level 16
- Programmer
Make a isPaused function or something to check and run functions if the "paused" boolean is false.
example:
onEnterFrame = function(){
if(isPaused() == false){
//Run the functions like countdown timer or something.
}//else it will not work..
}
Got it? You just need to think logically.. why so hard?:(
"Stand up and fight! Stand up and see the sky turn bright! Fight for a better day!"
-Turisas
- trishan007
-
trishan007
- Member since: Dec. 25, 2010
- Offline.
-
- Forum Stats
- Member
- Level 05
- Blank Slate
At 8/22/11 03:40 PM, scearezt wrote: Make a isPaused function or something to check and run functions if the "paused" boolean is false.
example:
onEnterFrame = function(){
if(isPaused() == false){
//Run the functions like countdown timer or something.
}//else it will not work..
}
Got it? You just need to think logically.. why so hard?:(
thx :)


