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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Our sound source contains some decent sounds but sometimes you want to play around with a plug-in synth to create your own sounds. Here, we‚Äôve opted the Steinberg Model‚Ä¢E as our second audio instrument and programmed an abrasive but not too intrusive sound."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(83).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step9")
  10.   end if
  11. end
  12.