home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 30 / CMi30.iso / pc / tutorials / 00072_tut2step1.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 "The great thing about the Model‚Ä¢E is that it‚Äôs multitimbral. Here we‚Äôve created a funky little sound on MIDI Channel 2. Again, when creating lines for juxtaposing parts, make your sounds sufficiently different from each other to add interest to the overall piece."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(85).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step1")
  10.   end if
  11. end
  12.