home *** CD-ROM | disk | FTP | other *** search
/ Mac Ga Ichiban! Special / macgaichibanspecial1.bin / MOVIES / PTM / 00037.ls < prev    next >
Encoding:
Text File  |  1995-12-13  |  549 b   |  20 lines

  1. on volchange
  2.   set absh to the mouseH - the left of sprite clickOn()
  3.   if absh >= 100 then
  4.     set the width of sprite 47 to 100
  5.     set the locH of sprite 47 to the locH of sprite 46
  6.     set absh to 100
  7.   else
  8.     if absh <= 0 then
  9.       set the width of sprite 47 to 0
  10.       set the locH of sprite 47 to the left of sprite 46
  11.       set absh to 0
  12.     else
  13.       set the width of sprite 47 to absh
  14.       set the locH of sprite 47 to the left of sprite 46 + (absh / 2)
  15.     end if
  16.   end if
  17.   updateStage()
  18.   set the soundLevel to absh / 100.0 * 7
  19. end
  20.