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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "13. Here we see the snare part copied across four bars. While we‚Äôve essentially kept the part the same as our original bar, we‚Äôve added notes played at low velocity at various points throughout the track. Note that the accents still fall at the same positions though."
  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 88 to 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "2step4")
  10.   end if
  11. end
  12.