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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here‚Äôs a simple arpeggio pattern that took all of two minutes to come up with but, when assigned to an appropriate sound, can give just the right effect needed to lift the track. In this instance we‚Äôve programmed a sound using the Pro Five that seems to fit quite well."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(79).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step5")
  10.   end if
  11. end
  12.