home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 20 / CMi20.iso / pc / tutorials.dir / 00050_tut1step2.ls < prev    next >
Encoding:
Text File  |  2000-03-28  |  484 b   |  12 lines

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "By using the set up data we can use bend values to create the effect of small slides and bends. In this case we‚Äôve created a small slide from an E2 to a G2 by way of a pitch bend value of 88. Remember that a bend value of 64 is the normal note value."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(76).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step2")
  10.   end if
  11. end
  12.