home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 29 / CMi29.iso / pc / tutorials / 00051_tut1step3.ls < prev    next >
Encoding:
Text File  |  2000-12-01  |  494 b   |  12 lines

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Because our bass sound responds to velocity in terms of opening the filter, we can experiment with different values at certain points within the bassline. Here we‚Äôve opted to increase the velocity and the filter value at positions 4.3.1.1, 4.3.2.1 and 4.4.3.1."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(77).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step3")
  10.   end if
  11. end
  12.