home *** CD-ROM | disk | FTP | other *** search
/ Multipedia / Multipedia_SoftKey_1995.iso / opening / mptour.dir / 00089_Script_89 < prev    next >
Text File  |  1995-11-30  |  661b  |  31 lines

  1. on startMovie
  2.   global pauseSprite
  3.   set pauseSprite = 45
  4. end
  5.  
  6. on waitsound whichChannel
  7.   repeat while (soundBusy(whichChannel)) and not (the mouseDown)
  8.     updateStage
  9.   end repeat
  10.   checkPassClick
  11. end waitSound
  12.  
  13. on waitVideo whichSprite
  14.   repeat while (the movieRate of sprite whichSprite > 0) and not (the mouseDown)
  15.     updateStage
  16.   end repeat
  17.   checkPassClick
  18. end waitVideo
  19.  
  20. on checkPassClick
  21.   global gPaused, gContinued, PauseSprite
  22.   if gPaused then
  23.     if the clickon = PauseSprite then
  24.       continueDemo
  25.     end if
  26.   else if gContinued then
  27.     if the clickon = PauseSprite then
  28.       pauseDemo
  29.     end if
  30.   end if
  31. end