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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here‚Äôs the entire four bar section as seen from the main arrange window. By using any of this as the basis of your track, it should be easy to create your own. Try changing drum patterns or adding fills at strategic points or muting and de-muting objects over time."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(82).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step8")
  10.   end if
  11. end
  12.