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

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