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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here‚Äôs one we prepared earlier. Essentially what we‚Äôve done is come up with our own rhythmic piano part making use of our original chords. The chord progression is exactly the same as before but the part now has a better rhythmic feel."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(83).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step9")
  10.   end if
  11. end
  12.