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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here‚Äôs a typical dominant bassline. The dominant mode is so-called because it‚Äôs based around the fifth note of the scale. As we‚Äôre working in the key of C, we can look at the first three notes of our bassline and notice the dominant role the fifth (the G) plays in our track."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(86).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step2")
  10.   end if
  11. end
  12.