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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "In this example we have embellished our previous piano part by not only adding a top line, but also by adding a couple of dark, moody chords at the beginning of the third bar. Try creating your own piano parts based on this theme by dragging various chords around."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(92).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step8")
  10.   end if
  11. end
  12.