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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "We‚Äôre going to be using the drum pattern created last month as the basis of our track. If, for some reason, you didn‚Äôt get Computer Music last month, don‚Äôt worry, we‚Äôve included it on this month‚Äôs CD. It‚Äôs called JazzPatt.MID."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(75).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step1")
  10.   end if
  11. end
  12.