home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 30 / CMi30.iso / pc / tutorials / 00075_tut2step4.ls < prev    next >
Encoding:
Text File  |  2001-01-04  |  463 b   |  12 lines

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "In this sampler though, we‚Äôre going to program a filter envelope setting that, when applied to the drum track, will create a sweeping filter effect. Here you can see a close-up of the final filter envelope settings on the EXS24."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(88).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step4")
  10.   end if
  11. end
  12.