home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT055.ZIP / READ.ME < prev    next >
Text File  |  1989-11-02  |  5KB  |  186 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.                                 The BOSSKEY Package
  7.                                           
  8.                             Version 1.4 (November, 1989)
  9.                                           
  10.                                           
  11.                                    R E A D - M E
  12.                                           
  13.                                           
  14.                                   Stephen Meredith
  15.                                     Data del Mar
  16.                                   10423 Byrne Ave
  17.                                 Cupertino, CA  95014
  18.                                    (408) 865-0706
  19.             
  20.             
  21.             For those of you who would like to start using the Bosskey
  22.             Package without reading the entire documentation file, this
  23.             file should contain enough information.  But read
  24.             BOSSKEY.DOC to fully understand the programs and their
  25.             features.
  26.             
  27.             
  28.             Files included in this disk:
  29.             
  30.             BOSSKEY.EXE     Screen hide program.
  31.             SCRSAVE.EXE     Screen save program.
  32.             SHOW-IMG.EXE    Screen file viewer.
  33.             NEW-IMG.EXE     BOSSKEY companion program.
  34.             CONV-IMG.COM    Converts a screen file to a C variable.
  35.             BOSSKEY.DOC     The full documentation for all the files.
  36.             READ.ME         This file.
  37.             SHOWLIB.OBJ     Large model C function showscreen().
  38.             SHOWLIB.H       Constants and prototype for showscreen().
  39.             
  40.             
  41.             BOSSKEY.EXE     
  42.             
  43.             A memory resident program for covering up the screen of your
  44.             computer with another, previously saved screen.  To run,
  45.             type:
  46.                             BOSSKEY filename
  47.             
  48.             where filename is the name of a screen image file saved with
  49.             SCRSAVE.  To activate, hit [CTRL-RIGHTSHIFT].  To
  50.             deactivate, hit [CTRL-RIGHTSHIFT] again.
  51.             
  52.             
  53.             SCRSAVE.EXE
  54.             
  55.             A memory resident program for capturing the screen of a
  56.             program and saving it to disk as a screen image file.  To
  57.             load, type:
  58.                             SCRSAVE
  59.             
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.             with no command line arguments.  To save a screen, hit
  73.             [ALT]-[PRNSCREEN].  Enter a filename at the prompt, or
  74.             [RETURN] alone.  Hitting [RETURN] alone will cause the
  75.             filenames of all screens saves from then on as 1.IMG, 2.IMG,
  76.             3.IMG, etc.
  77.             (Note:  if [ALT]-[PRNSCREEN] doesn't work, try [ALT]-
  78.             [GREY*].  That's the * above the numeric keypad.)
  79.             
  80.             
  81.             SHOW-IMG.EXE
  82.             
  83.             A program for viewing image files.  To use, type:
  84.             
  85.                             SHOW-IMG filename1 [filename2...]
  86.             
  87.             where filename1 and filename2 are names of screen image
  88.             files saved with SCRSAVE.  You may enter as many screen
  89.             image files on the command line as you like.  They will be
  90.             viewed sequentially, separated by a keystroke.  You may use
  91.             wildcards as well.
  92.             
  93.             
  94.             NEW-IMG.EXE
  95.             
  96.             A program for changing the screen that is displayed by
  97.             BOSSKEY when the [CTRL-RIGHTSHIFT] key is pressed.  To use,
  98.             type:
  99.                     NEW-IMG filename
  100.             
  101.             where filename is the name of a screen image file created
  102.             with SCRSAVE.  BOSSKEY must be loaded for this to have any
  103.             affect.
  104.             
  105.             
  106.             CONV-IMG.COM
  107.             
  108.             Converts the format of a screen image file to a text file
  109.             containing the representation of the screen in a C array.
  110.             To use, type:
  111.                             CONV-IMG filename
  112.             
  113.             where filename is the name of a screen image file.  The new
  114.             file will be given the name filename.h.  The array with be
  115.             called screen_filename[].
  116.             
  117.             
  118.             SHOWLIB.OBJ
  119.             
  120.             Contains the C function showscreen().  See SHOWLIB.H for
  121.             prototype.  See BOSSKEY.DOC for use.
  122.             
  123.             
  124.             SHOWLIB.H
  125.             
  126.             Showscreen() prototype and constants.  See BOSSKEY.DOC for
  127.             details.
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.