home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1995 September / C_BUYER.ISO / dosshare / finnish / 1.fil next >
Text File  |  1993-03-12  |  2KB  |  51 lines

  1. ' TSA Install Script
  2. ' Copyright 1992, ImagiSOFT, Inc.
  3. ' June 1, 1992
  4.  
  5. ' This installation is in 4 parts:
  6. '   1.FIL    (This file)
  7. '   2c.FIL   (Color configurations)
  8. '   2b.FIL   (LCD configurations)
  9. '   3.FIL    (loaded upon disk error)
  10.  
  11. ' NOTE:  This script is written in 4 parts for faster loading and easier
  12. '        maintenence.  This script, 1.FIL is the first part, which is
  13. '        short so that it will load quickly.  It asks the question
  14. '        "can you see this in color  y/n?".  If "yes" it runs the script
  15. '        2c.FIL, if "no" it runs 2b.FIL.  These are identical except for
  16. '        the screen colors.  3.FIL is loaded only if a fatal disk error
  17. '        occurs.
  18.  
  19. '        Most of these remarks were removed on the distribution copy for
  20. '        faster file loading and less disk space.
  21.  
  22.  
  23. BACKGROUND 63                            ' cyan background
  24. TELESCOPE OFF                            ' display 1st window "instantly"
  25.  
  26. WINOPEN 0 2 95
  27. "            ImagiSOFT, Inc."
  28. "Where Imagination Brings Software to Life"
  29. ""
  30. "        TSA Installation Program"
  31.  
  32.  
  33. TELESCOPE ON      ' turn on telescoping windows for the rest of the messages
  34. SHADOW ON         ' I like shadowed windows
  35. SPACE 720         ' 720K required.  Will install to a 3.5" floppy
  36.  
  37. ' -------------------
  38. ' test for LCD screen
  39. ' -------------------
  40. WINOPEN 0 10 31
  41. "Can you see the messages on your screen in COLOR   Y or N?"
  42. ASK 68 11
  43. WINCLOSE
  44.  
  45. JUMP.NO LOAD_LCD                    ' jump to lcd label
  46.  
  47. SCRIPT ~0\2C.FIL                    ' load color script from install floppy
  48.  
  49. :LOAD_LCD
  50. SCRIPT ~0\2B.FIL                    ' load lcd script from install floppy
  51.