home *** CD-ROM | disk | FTP | other *** search
/ 1&1 Multimedia Trend 1996 11 D / MM_TREND.ISO / prog / t_online / t_intro.dir / 00151.ls < prev    next >
Encoding:
Text File  |  1996-09-18  |  671 b   |  22 lines

  1. on mouseDown
  2.   global schalterT5, posSlider
  3.   set schalterT5 to schalterT5 + 1
  4.   if schalterT5 > 1 then
  5.     set schalterT5 to 0
  6.   end if
  7.   puppetSound("click")
  8.   if schalterT5 = 0 then
  9.     set the castNum of sprite 39 to the number of cast "but1BalkenT5"
  10.     set the locH of sprite 38 to posSlider
  11.     set the volume of sound 2 to (posSlider - 497) * (255 / 68)
  12.     set the volume of sound 1 to (posSlider - 497) * (255 / 68)
  13.   end if
  14.   if schalterT5 = 1 then
  15.     set the castNum of sprite 39 to the number of cast "but1BalkenT5" + 1
  16.     set the locH of sprite 38 to 497
  17.     set the volume of sound 2 to 0
  18.     set the volume of sound 1 to 20
  19.   end if
  20.   updateStage()
  21. end
  22.