home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 14 / CMi14.iso / pc / readint / 00030.ls < prev    next >
Encoding:
Text File  |  1999-10-04  |  801 b   |  38 lines

  1. on mouseDown
  2.   global whichReader
  3.   if whichReader = 1 then
  4.     set the movieRate of sprite 45 to 2
  5.   else
  6.     if whichReader = 2 then
  7.       set the movieRate of sprite 46 to 2
  8.     else
  9.       if whichReader = 3 then
  10.         set the movieRate of sprite 47 to 2
  11.       else
  12.         if whichReader = 4 then
  13.           set the movieRate of sprite 48 to 2
  14.         end if
  15.       end if
  16.     end if
  17.   end if
  18. end
  19.  
  20. on mouseUp
  21.   global whichReader
  22.   if whichReader = 1 then
  23.     set the movieRate of sprite 45 to 1
  24.   else
  25.     if whichReader = 2 then
  26.       set the movieRate of sprite 46 to 1
  27.     else
  28.       if whichReader = 3 then
  29.         set the movieRate of sprite 47 to 1
  30.       else
  31.         if whichReader = 4 then
  32.           set the movieRate of sprite 48 to 1
  33.         end if
  34.       end if
  35.     end if
  36.   end if
  37. end
  38.