home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 18 / CMi18.iso / pc / tutorials / 00077_tut2step6.ls < prev    next >
Encoding:
Text File  |  2000-02-01  |  532 b   |  12 lines

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "Here we see an enhanced version of our original bassline. All we‚Äôve effectively done here is add a few licks at the end of each bar. It‚Äôs often better to record licks on a separate track to the original riff, so if you make a mistake you don‚Äôt have to start from scratch."
  4.   repeat with x = 75 to 95
  5.     set the visible of sprite x to 0
  6.   end repeat
  7.   set the visible of sprite 90 to 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step6")
  10.   end if
  11. end
  12.