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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Finally, we see an entire piano motif based around our original chord. The descending series of chords in the first bar work well against the walking bassline, whilst the simple motif in the second bar rounds the section off quite nicely."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(88).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step4")
  10.   end if
  11. end
  12.