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

  1. on enterFrame
  2.   global dur
  3.   if the movieTime of sprite 2 < 1440 then
  4.   else
  5.     if the movieTime of sprite 2 < 1600 then
  6.       set the ink of sprite 12 to 4
  7.       updateStage()
  8.     else
  9.       if the movieTime of sprite 2 < 1900 then
  10.         set the ink of sprite 13 to 4
  11.         updateStage()
  12.       else
  13.         if the movieTime of sprite 2 < 2200 then
  14.           set the ink of sprite 14 to 4
  15.           updateStage()
  16.         else
  17.           if the movieTime of sprite 2 < 2480 then
  18.             set the ink of sprite 16 to 4
  19.             updateStage()
  20.           else
  21.             if the movieTime of sprite 2 < 2720 then
  22.               set the ink of sprite 17 to 4
  23.               updateStage()
  24.             else
  25.               if the movieTime of sprite 2 < 2950 then
  26.                 set the ink of sprite 15 to 4
  27.                 updateStage()
  28.               else
  29.                 if the movieTime of sprite 2 < 3099 then
  30.                 else
  31.                   if the movieTime of sprite 2 < 3200 then
  32.                     set the ink of sprite 45 to 4
  33.                     updateStage()
  34.                   else
  35.                     if the movieTime of sprite 2 < 3728 then
  36.                     else
  37.                       if the movieTime of sprite 2 < dur then
  38.                         set the ink of sprite 44 to 4
  39.                         updateStage()
  40.                       else
  41.                         if the movieTime of sprite 2 >= dur then
  42.                           stopvideo(2)
  43.                           go(the frame + 1)
  44.                         end if
  45.                       end if
  46.                     end if
  47.                   end if
  48.                 end if
  49.               end if
  50.             end if
  51.           end if
  52.         end if
  53.       end if
  54.     end if
  55.   end if
  56. end
  57.  
  58. on exitFrame
  59.   go(the frame - 1)
  60. end
  61.