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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here we see a piano chord in C based on the dominant mode structure. As with the piano chord in our minor tutorial, we used a chord that‚Äôs been spread across two hands and consists of an A#3, D4, E4 and A4 in the left hand and a D5, G5 and C6 in the right."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(87).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step3")
  10.   end if
  11. end
  12.