Be a Supporter!

pause screen [AS2]

  • 225 Views
  • 5 Replies
New Topic Respond to this Topic
trishan007
trishan007
  • Member since: Dec. 25, 2010
  • Offline.
Forum Stats
Member
Level 05
Blank Slate
pause screen [AS2] 2011-08-22 14:23:25 Reply

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
Response to pause screen [AS2] 2011-08-22 14:37:34 Reply

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?


BBS Signature
ProfessorFlash
ProfessorFlash
  • Member since: Oct. 6, 2007
  • Offline.
Forum Stats
Member
Level 32
Programmer
Response to pause screen [AS2] 2011-08-22 14:58:33 Reply

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
Response to pause screen [AS2] 2011-08-22 15:08:33 Reply

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
Response to pause screen [AS2] 2011-08-22 15:40:11 Reply

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
Response to pause screen [AS2] 2011-08-23 05:26:19 Reply

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 :)