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

  1. on enterFrame
  2.   global dur
  3.   if the movieTime of sprite 2 < 600 then
  4.   else
  5.     if the movieTime of sprite 2 < 800 then
  6.       set the ink of sprite 12 to 4
  7.       updateStage()
  8.     else
  9.       if the movieTime of sprite 2 < 950 then
  10.         set the ink of sprite 13 to 4
  11.         updateStage()
  12.       else
  13.         if the movieTime of sprite 2 < 1200 then
  14.           set the ink of sprite 14 to 4
  15.           updateStage()
  16.         else
  17.           if the movieTime of sprite 2 < 1300 then
  18.             set the ink of sprite 15 to 4
  19.             updateStage()
  20.           else
  21.             if the movieTime of sprite 2 < 1500 then
  22.               set the ink of sprite 11 to 4
  23.               updateStage()
  24.             else
  25.               if the movieTime of sprite 2 < 1785 then
  26.               else
  27.                 if the movieTime of sprite 2 < 1950 then
  28.                   set the ink of sprite 16 to 4
  29.                   updateStage()
  30.                 else
  31.                   if the movieTime of sprite 2 < 2185 then
  32.                   else
  33.                     if the movieTime of sprite 2 < 2300 then
  34.                       set the ink of sprite 17 to 4
  35.                       updateStage()
  36.                     else
  37.                       if the movieTime of sprite 2 = dur then
  38.                         stopvideo(2)
  39.                         go(the frame + 1)
  40.                       end if
  41.                     end if
  42.                   end if
  43.                 end if
  44.               end if
  45.             end if
  46.           end if
  47.         end if
  48.       end if
  49.     end if
  50.   end if
  51. end
  52.  
  53. on exitFrame
  54.   go(the frame - 1)
  55. end
  56.