home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 30 / CMi30.iso / pc / tutorials / 00055_tut1step7.ls < prev    next >
Encoding:
Text File  |  2001-01-04  |  497 b   |  12 lines

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Our track is grooving along quite nicely as it is so we don‚Äôt want to overcook it. However, it still needs a few more bits and pieces. Here we‚Äôve taken a sound from the SC8850 entitled ‚ÄòMinor Rave‚Äô and played in a couple of hits across our four bar section."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(81).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step7")
  10.   end if
  11. end
  12.