home *** CD-ROM | disk | FTP | other *** search
/ Speed Learning System: Painter 5.0 #3 / Paint5Vol3.iso / pc / lingo.ini < prev    next >
Text File  |  1997-07-09  |  1KB  |  31 lines

  1. -- This is the text file LINGO.INI.  It is designed
  2. -- to tell Director for Windows what XObjects or
  3. -- DLLs should be loaded when starting DIRECTOR.EXE.
  4.  
  5. -- You should have a copy of this file and the associated
  6. -- DLL file (for example, FILEIO.DLL) in the same 
  7. -- location as any Projector you wish to distribute.
  8. -- Otherwise, the Projector will not be able to utilize
  9. -- the features of the DLL you want to use.
  10.  
  11. -- To comment out one of the lines below, use two dashes (--)
  12. -- as in the beginning of these lines.
  13.  
  14. -- The DLLs or XObjects loaded are:
  15. -- FILEIO.DLL, for file input and output
  16. -- BLITPICT.DLL, for displaying graphics more quickly
  17. -- BATQT.DLL, for processing quicktime movies more quickly
  18. -- LABELDRV.DLL, for accessing the CD-ROM drive correctly
  19. -- MISC_X.DLL
  20.  
  21. on startup
  22.     put "Now loading LINGO.INI"&&the date&&the time
  23.     put "This computer is running in "&& the colorDepth &"-bit color depth."
  24. --  set the centerStage to TRUE
  25.     openxlib "fileio"
  26.     openxlib "blitpict"
  27.     openxlib "batqt"
  28.     openxlib "labeldrv"
  29.     openxlib "misc_x"
  30. end startup
  31.