home *** CD-ROM | disk | FTP | other *** search
/ The Weather Channel - Everything Weather / TheWeatherChannel-EverythingWeather-Win31.iso / twcia / winters / winters.dxr / 00048.ls < prev    next >
Encoding:
Text File  |  1995-08-22  |  556 b   |  21 lines

  1. on mouseDown
  2.   global start, duration, ratio
  3.   if the movieRate of sprite 16 = 0 then
  4.     set the castNum of sprite 28 to 132
  5.     set the movieRate of sprite 16 to 1
  6.   else
  7.     set the castNum of sprite 28 to 131
  8.     set the movieRate of sprite 16 to 0
  9.   end if
  10.   updateStage()
  11.   if the mouseDown then
  12.     repeat while the mouseDown
  13.       set x to the mouseH
  14.       set the locH of sprite 28 to x
  15.       updateStage()
  16.       set x to the locH of sprite 28
  17.       set the movieTime of sprite 16 to integer(((x - start) / ratio) + 1)
  18.     end repeat
  19.   end if
  20. end
  21.