home *** CD-ROM | disk | FTP | other *** search
/ Mac OS on the PowerPC Mic…rocessor - In Store Demo / Mac OS on the PowerPC Microprocessor.iso / MacOS / MacOS.dxr / 00064_player start.ls < prev    next >
Encoding:
Text File  |  1996-05-13  |  515 b   |  21 lines

  1. on exitFrame
  2.   global gSpriteSetList, gNextPlay, gQuick
  3.   repeat with n in getAt(gSpriteSetList, 2)
  4.     set the visible of sprite n to 1
  5.   end repeat
  6.   repeat with n in getAt(gSpriteSetList, 1)
  7.     set the visible of sprite n to 0
  8.     set the puppet of sprite n to 0
  9.   end repeat
  10.   updateStage()
  11.   setVolumeButtonLoc()
  12.   setSoundLevel()
  13.   if gQuick then
  14.     set gNextPlay to [1, 1, #play]
  15.   else
  16.     set gNextPlay to [1, 1, #pause]
  17.   end if
  18.   set the mouseDownScript to "playerMouseDownScript"
  19.   go("PlayMode")
  20. end
  21.