home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 29 / CMi29.iso / pc / tutorials / 00073_tut2step2.ls < prev    next >
Encoding:
Text File  |  2000-12-01  |  515 b   |  12 lines

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here‚Äôs the bass part that we arrived at after cycling around our two bar section. When trying to arrive at a suitable bass part, keep muting different instruments such as the piano etc, until you find something that works with all musical elements either combined or individually."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(86).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step2")
  10.   end if
  11. end
  12.