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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "A track based around diminished mode intervals can sound particularly discordant, especially when relating to jazz. Here we can see a typical diminished bassline which, when played in isolation, has an almost sinister feel."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(90).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step6")
  10.   end if
  11. end
  12.