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

  1. on mouseUp
  2.   global whatTrack, pauseMarker
  3.   pauseMarker = 0
  4.   if whatTrack = 1 then
  5.     set the movieTime of sprite 30 to 0
  6.   else
  7.     if whatTrack = 2 then
  8.       set the movieTime of sprite 31 to 0
  9.     else
  10.       if whatTrack = 3 then
  11.         set the movieTime of sprite 32 to 0
  12.       else
  13.         if whatTrack = 4 then
  14.           set the movieTime of sprite 33 to 0
  15.         end if
  16.       end if
  17.     end if
  18.   end if
  19.   if whatTrack = 1 then
  20.     set the movieRate of sprite 30 to 0
  21.   else
  22.     if whatTrack = 2 then
  23.       set the movieRate of sprite 31 to 0
  24.     else
  25.       if whatTrack = 3 then
  26.         set the movieRate of sprite 32 to 0
  27.       else
  28.         if whatTrack = 4 then
  29.           set the movieRate of sprite 33 to 0
  30.         end if
  31.       end if
  32.     end if
  33.   end if
  34. end
  35.