home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today (BR) Volume 2 #6 / CDRTV2N6.iso / makers / random.dir / 00055_Script_55 < prev    next >
Text File  |  1996-03-11  |  603b  |  20 lines

  1. on mouseDown
  2.   set oldSound = the soundLevel
  3.   
  4.   repeat while the mouseDown
  5.     if rollOver(6) then
  6.       set temp = ((the bottom of sprite the clickon - the mouseV)/17)
  7.       if temp > 7 then set temp = 7
  8.       else if temp < 0 then set temp = 0
  9.       
  10.       set the castNum of sprite the clickOn to the number of cast string("v"&(temp))
  11.       
  12.       if the soundLevel <> temp then 
  13.         set the soundLevel to temp
  14.         if oldSound = 0 then puppetSound 2, the number of cast "Random.iff"
  15.         updateStage
  16.         set oldSound = temp
  17.       end if
  18.     end if
  19.   end repeat
  20. end