home *** CD-ROM | disk | FTP | other *** search
/ Hentai X 19 / HentaiX.iso / LINGO.INI < prev   
Text File  |  2003-08-28  |  716b  |  20 lines

  1. -- This is the text file LINGO.INI.  It is designed
  2. -- to allow the execution of Lingo on Director start-up.
  3.  
  4. -- Some functionality is not permitted from the on startup handler
  5. -- for example, 'put' statements don't function from the startup handler
  6.  
  7. -- To try out the on startup handler, uncomment the 3 example lines in the handler
  8. -- you should hear a 'beep' while launching  & then typing
  9. -- showGlobals in the message window will display our message
  10.  
  11. -- To comment out the lines below afterward, use two dashes (--)
  12. -- as in the beginning of this line.
  13.  
  14. on startup
  15.   the searchpaths = ["@:Pdfs"] 
  16.   -- beep
  17.   -- global eEgg
  18.   -- eEgg = "Hi! - from the Director Engineering Team"
  19. end startup
  20.