home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / graphics / demos304.zip / DEMOSCRX.DOC < prev    next >
Text File  |  1993-03-13  |  3KB  |  75 lines

  1. DEMOSCRX.DOC
  2. 03/13/93
  3.  
  4.                                  Wayne Software
  5.                                113 Sheffield St.
  6.                             Silver Spring, MD 20910
  7.  
  8.                      42 61 74 6D 61 6E 20 4C 69 76 65 73 21
  9.  
  10.                               Fax:  (301) 588-8986
  11.  
  12. The DEMOSCRX.EXE program takes the file created by the DEMOSCRS.EXE TSR and
  13. creates screen files that can be used in conjunction with The DEMO System.
  14. These files have imbedded color codes (^Cx) in them.  The program can also be
  15. used to create files with standard ANSI.SYS-compatible codes in them.  It can
  16. also be used to create plain vanilla text files without screen colors.
  17.  
  18. The program requires two parameters and allows for several others:
  19.  
  20.      DEMOSCRX infile outfile [ /OVERWRITE | /APPEND | /-OVERWRITE | /OVERASK ]
  21.        [ /CLEAR ] [ /DEMO | /ANSI | /PLAIN ] [ /? ]
  22.  
  23. where:
  24.  
  25. "infile" is the name of DEMOSCRS.EXE-created file to process.  If you've
  26. tampered with this file in anyway, the DEMOSCRX program will probably crash and
  27. burn.
  28.  
  29. "outfile" is the name of the output file to create.
  30.  
  31. "/OVERWRITE" says to overwrite the report file if it's already there.
  32.  
  33. "/APPEND" says to append to the end of any existing report file.
  34.  
  35. "/-OVERWRITE" says to abort if the output file exists already.
  36.  
  37. "/OVERASK" says to prompt if the output file exists already.  This is the
  38. default.
  39.  
  40. "/DELETE" says to delete the input file when you finish.
  41.  
  42.  
  43. "/DEMO" says to create an output that is compatible with The DEMO System.  If
  44. you choose this option, the program will determine what colors you used and
  45. create the appropriate SET COLOR statements.  (It doesn't try to figure out any
  46. SET MONO statements.) If any screen contains more than 8 colors (The DEMO System
  47. maximum), the program resets the extra colors typically as ^C7.  The output file
  48. will look something like this:
  49.  
  50.      ; -- Start of screen: used 3 colors
  51.      SET BASE 0
  52.      SET COLOR 071 007 157 070 155 080 087 003
  53.      /.
  54.       (actual text screens with imbedded ^Cx codes)
  55.      ./
  56.  
  57.      ; -- Start of screen
  58.      (next screen)
  59.  
  60. You will still have to edit this file with a text editor in order to merge in
  61. whatever action codes and page statements you want to use.
  62.  
  63. "/ANSI" says to create an output file that can be printed on any system that has
  64. the ANSI.SYS (or compatible) device driver loaded.  This file will consist of
  65. the text with imbedded ANSI escape and color commands.  Normally, ANSI files
  66. have a file extension of .ANS.  You can view the output file afterward by saying
  67. "TYPE outfile".  Do not copy this file to a printer or the printer will go nuts.
  68.  
  69. "/PLAIN" says to create an output file without any color indicators at all.  It
  70. does not include any statements for The DEMO System at all.  You can view the
  71. output file afterward by saying "TYPE outfile".  Note that lines going out to 80
  72. characters will show up double-spaced on your screen but normal spaced on a
  73. printer.
  74.  
  75.