home *** CD-ROM | disk | FTP | other *** search
/ Encyklopedia Omnia / Planeta.iso / data / LINGO.INI < prev    next >
Text File  |  1999-06-14  |  447b  |  19 lines

  1. -- OMNIA PLANET
  2. -- startup configuration
  3.  
  4. on startup
  5.     global gDebugMode, gMovieToGo, gFrameToGo, gTestQT3presence, gCanClick
  6.  
  7.     -- Following line prevents crashes
  8.     if string(0.0)="a" then nothing
  9.  
  10.     -- playback parameters
  11.     set gDebugMode = FALSE
  12.     set the exitLock to TRUE
  13.     set gTestQT3presence = TRUE
  14.     set gCanClick = TRUE
  15.  
  16.     -- jump to...
  17.     set gMovieToGo = "0_sigla"
  18.     set gFrameToGo = 1
  19. end startup