home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 30 / CMi30.iso / pc / readerint / 00063_pause.ls < prev    next >
Encoding:
Text File  |  2001-01-04  |  420 b   |  20 lines

  1. on mouseUp
  2.   global whatTrack, pauseMarker
  3.   if whatTrack = 1 then
  4.     set the movieRate of sprite 30 to 0
  5.   else
  6.     if whatTrack = 2 then
  7.       set the movieRate of sprite 31 to 0
  8.     else
  9.       if whatTrack = 3 then
  10.         set the movieRate of sprite 32 to 0
  11.       else
  12.         if whatTrack = 4 then
  13.           set the movieRate of sprite 33 to 0
  14.         end if
  15.       end if
  16.     end if
  17.   end if
  18.   pauseMarker = 1
  19. end
  20.