home *** CD-ROM | disk | FTP | other *** search
/ Mac Ga Ichiban! 1996 October / macgaichiban199610.bin / MOVIES / PTM.Dxr / 00077.ls < prev    next >
Encoding:
Text File  |  1996-08-12  |  588 b   |  30 lines

  1. global gslevel
  2.  
  3. on changevol
  4.   puppetSprite(23, 1)
  5.   set the type of sprite 23 to 1
  6.   set the ink of sprite 23 to 0
  7.   set the foreColor of sprite 23 to 255
  8.   set the backColor of sprite 23 to 0
  9.   set the castNum of sprite 23 to the number of cast ("VOL" & gslevel)
  10.   updateStage()
  11. end
  12.  
  13. on chvol
  14.   if gslevel = 7 then
  15.     set gslevel to 0
  16.   else
  17.     set gslevel to gslevel + 1
  18.   end if
  19.   set the soundLevel to gslevel
  20.   changevol()
  21. end
  22.  
  23. on startMovie
  24.   if the soundLevel = 0 then
  25.     set the soundLevel to 1
  26.   end if
  27.   set gslevel to the soundLevel
  28.   set the visible of sprite 23 to 0
  29. end
  30.