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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "If you examine our bassline closely, you can see that it basically plays octave parts that go from F to D# to C# and finally C Natural. At the very end of the fourth bar we then have a small octave run that ascends through these notes."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(76).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step2")
  10.   end if
  11. end
  12.