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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Just to give you an idea of what‚Äôs achievable once you‚Äôve grasped the concept of modes, here‚Äôs an example of a pretty complex piano part playing alongside our drum and bass tracks. Nice."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(93).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step9")
  10.   end if
  11. end
  12.