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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "When emulating the sound of a real Rhodes, you‚Äôll need to make judicious use of any tremolo effects your sound source may have. Luckily, our Roland SC8850 has a great Rhodes sound and a tremolo effect. Here‚Äôs a Rhodes riff that syncopates nicely with our kick drum. "
  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.