home *** CD-ROM | disk | FTP | other *** search
/ Media Gallery 1995 June / MG6.ISO / mg.dig / 00005.ls < prev    next >
Encoding:
Text File  |  1995-04-20  |  643 b   |  31 lines

  1. on enterFrame
  2.   scrollerei()
  3. end
  4.  
  5. on exitFrame
  6.   global theMode, dur
  7.   if isItAMovie(2) then
  8.     if the movieTime of sprite 2 < 1110 then
  9.       go(the frame)
  10.     else
  11.       if the movieTime of sprite 2 > dur then
  12.         go(the frame + 1)
  13.       else
  14.         if the movieTime of sprite 2 < 1300 then
  15.           set the ink of sprite 14 to 4
  16.           updateStage()
  17.           go(the frame)
  18.         else
  19.           if the movieTime of sprite 2 < 1400 then
  20.             set the ink of sprite 23 to 4
  21.             updateStage()
  22.             go(the frame)
  23.           end if
  24.         end if
  25.       end if
  26.     end if
  27.   else
  28.     go(the frame + 1)
  29.   end if
  30. end
  31.