home *** CD-ROM | disk | FTP | other *** search
/ Car Screensaver - Toyota / TOYOTA.iso / mjparty / vivi_ex.exe / vivi_ex.DXR / 00055.ls < prev    next >
Encoding:
Text File  |  1996-05-13  |  707 b   |  37 lines

  1. on mouseUp
  2.   set num to the castNum of sprite 48
  3.   if num = 183 then
  4.     offh()
  5.   else
  6.     onh()
  7.   end if
  8. end
  9.  
  10. on offh
  11.   puppetSound(3, 98)
  12.   set the volume of sound 1 to 0
  13.   set the volume of sound 2 to 0
  14.   set the castNum of sprite 48 to 184
  15.   updateStage()
  16.   set the castNum of sprite 48 to 185
  17.   repeat while soundBusy(3)
  18.     nothing()
  19.   end repeat
  20.   updateStage()
  21.   set the volume of sound 3 to 0
  22. end
  23.  
  24. on onh
  25.   set the volume of sound 3 to 255
  26.   puppetSound(3, 98)
  27.   set the volume of sound 1 to 255
  28.   set the volume of sound 2 to 255
  29.   set the castNum of sprite 48 to 186
  30.   updateStage()
  31.   set the castNum of sprite 48 to 183
  32.   repeat while soundBusy(3)
  33.     nothing()
  34.   end repeat
  35.   updateStage()
  36. end
  37.