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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here we‚Äôve merged the main guitar line with the harmony line and zoomed in on it so that we can see the relationship between them. Be warned though, if your original part contains pitch bend data, make sure you use another MIDI Channel to stop it affecting both parts."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(91).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step7")
  10.   end if
  11. end
  12.