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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here‚Äôs the final guitar line that runs over our entire eight bar piece. Effectively we‚Äôve taken our original two bar theme and simply elaborated on it, as repeating the initial line four times would make for very tedious listening."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(89).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step5")
  10.   end if
  11. end
  12.