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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Starting with the previous drum pattern, for our minor bass part we‚Äôve opted for an acoustic bass found on program change number 32 within the general MIDI map. Again, we‚Äôre going to create our part over four bars and cycle round this section."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(79).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step5")
  10.   end if
  11. end
  12.