home *** CD-ROM | disk | FTP | other *** search
/ Sill to Sash: A Professi… Guide to Windows & Doors / SILLTOSASH.BIN / intro.dir / 00002.ls < prev    next >
Encoding:
Text File  |  2001-03-14  |  324 b   |  20 lines

  1. on enterFrame
  2.   global firstTime
  3.   if firstTime = 1 then
  4.     sprite(1).isFullScreen = 1
  5.     firstTime = 0
  6.   end if
  7. end
  8.  
  9. on exitFrame
  10.   if sprite(1).isFullScreen = 0 then
  11.     go(the frame + 1)
  12.   else
  13.     if sprite(1).playbackState = #finished then
  14.       go(the frame + 1)
  15.     else
  16.       go(the frame)
  17.     end if
  18.   end if
  19. end
  20.