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

  1. on enterFrame
  2.   global dur
  3.   if the movieTime of sprite 2 < 700 then
  4.   else
  5.     if the movieTime of sprite 2 < 750 then
  6.       set the ink of sprite 44 to 4
  7.       updateStage()
  8.     else
  9.       if the movieTime of sprite 2 = dur then
  10.         stopvideo(2)
  11.         go(the frame + 1)
  12.       end if
  13.     end if
  14.   end if
  15. end
  16.  
  17. on exitFrame
  18.   go(the frame - 1)
  19. end
  20.