home *** CD-ROM | disk | FTP | other *** search
/ Shocking The Web CD-ROM / SHOCK_CD.ISO / pc / tutorial / ch05_des / slider / slider.dcr / 00005.ls < prev    next >
Encoding:
Text File  |  1996-11-26  |  546 b   |  20 lines

  1. global gConstrainSprite, gSliderSprite, gLineTop
  2.  
  3. on initSlider
  4.   set gSliderSprite to 2
  5.   set gConstrainSprite to 1
  6.   set the constraint of sprite gSliderSprite to gConstrainSprite
  7.   puppetSprite(gSliderSprite, 1)
  8.   set gLineTop to the top of sprite gConstrainSprite
  9. end
  10.  
  11. on dragMe
  12.   repeat while the stillDown
  13.     set the locV of sprite gSliderSprite to the mouseV
  14.     set newValue to the locV of sprite gSliderSprite - gLineTop
  15.     set the text of field "Tempo" to string(newValue)
  16.     puppetTempo(newValue)
  17.     updateStage()
  18.   end repeat
  19. end
  20.