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

  1. on mouseUp
  2.   puppetSound(1, 0)
  3.   set the text of field "infoField" to "In this example we‚Äôve merged all the drum tracks together so that we can see where all our respective drum parts fall, and it‚Äôs easy from here to alter any velocities of individual instruments by using the velocity tool from the toolbox on the left of the page."
  4.   repeat with x = 75 to 95
  5.     sprite(x).visible = 0
  6.   end repeat
  7.   sprite(75).visible = 1
  8.   if not soundBusy(1) then
  9.     puppetSound(1, "step1")
  10.   end if
  11. end
  12.