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

  1. -- Go to fullscreen
  2. on enterFrame
  3.   global firstTime
  4.   if firstTime = TRUE then
  5.     set the isFullScreen of sprite 1 to TRUE
  6.     set firstTime to FALSE
  7.   end if
  8. end
  9.  
  10. -- Loop until playback done or user exits full screen
  11. on exitFrame
  12.   if (the isFullScreen of sprite 1) = FALSE then
  13.     go to the frame + 1
  14.   else if (the playbackState of sprite 1) = #finished then
  15.     go to the frame + 1
  16.   else  
  17.     go to the frame  
  18.   end if  
  19. end
  20.