home *** CD-ROM | disk | FTP | other *** search
/ The Complete Interactive Cookbook / L1_JS_101199.ISO / TOURGUID / COOKTG.DIR / 00016.ls < prev    next >
Encoding:
Text File  |  1996-10-29  |  482 b   |  20 lines

  1. on pauseDemo
  2.   global pauseSprite, gPaused
  3.   set the puppet of sprite pauseSprite to 1
  4.   set the castNum of sprite pauseSprite to the number of member "ContinueButton"
  5.   updateStage()
  6.   set gPaused to 1
  7.   set gContinued to 0
  8.   pause()
  9. end
  10.  
  11. on continueDemo
  12.   global pauseSprite, gPaused
  13.   set the puppet of sprite pauseSprite to 1
  14.   set the castNum of sprite pauseSprite to the number of member "PauseButton"
  15.   updateStage()
  16.   set gPaused to 0
  17.   set gContinued to 1
  18.   continue()
  19. end
  20.