home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / h / htmix20.zip / SE.ZIP / SE.DOC < prev    next >
Text File  |  1992-07-14  |  3KB  |  61 lines

  1.  
  2.  
  3.                            ┌─────────────────────┐
  4.                            │  Screen Editor 2.0  │
  5.                            └─────────────────────┘
  6.  
  7.          Drawing a text screen using the routines in the SCREEN unit
  8.          can sometimes be tedious, with numerous calls Box, Fill,
  9.          WriteStr, and all the others. It would sometimes be easier
  10.          if you could get the screen image from file, or save a screen
  11.          to file.
  12.  
  13.          In the SCREEN unit, there are two routines, LoadScreenFromFile
  14.          and SaveScreenToFile, designed to do this. As the names imply,
  15.          these are used to store and retrieve the contents of the text
  16.          screen.
  17.  
  18.          And to help making the images, here is the Screen Editor, which
  19.          can be used to draw a 25x80 character color text screen.
  20.  
  21.          The program will start with a blank screen, with only the
  22.          cursor showing in reverse attribute. The commands to use in
  23.          the program are:
  24.  
  25.          F1     - Bring up a small help window
  26.          F2     - Save a screen image to file. The program will prompt
  27.                   for a file name.
  28.          F3     - Load a screen image from file. The program will provide
  29.                   you with a scrollable list of files with the extension
  30.                   .SCR.
  31.          Space  - Write the currently active character at the cursor
  32.                   position with the currently active attribute.
  33.          AltA   - Change the currently active Attribute. The program
  34.                   will display a window with attributes to choose from.
  35.          AltB   - Draw a box, with the currently active Attribute and
  36.                   Box type.
  37.          AltC   - Change the currently active Character. The program
  38.                   will display a window with characters to choose from.
  39.          AltP   - Display the cursor Position in the top right corner.
  40.          AltF1  - Fill an area of the screen with a selected Attribute
  41.                   without changing the characters underneath.
  42.          AltF2  - Fill an area of the screen with a selected Character
  43.                   without changing the attributes underneath.
  44.          AltF3  - Select Box type.
  45.          AltX   - Quit the program (beware, pressing Escape will only
  46.                   draw a left arrow).
  47.  
  48.  
  49.          Move the cursor with the arrow keys, or with Home, End, PgUp,
  50.          or PgDn. If you press a text key, the program will write that
  51.          character in the current attribute and move the cursor one
  52.          position to the right. However, this does not work for the
  53.          space key. To write a space, press AltC and select Space
  54.          (character # 32) from the character chart (or to get the same
  55.          effect, press any key that generates a null-character, like
  56.          one of the function key F4 - F10). You can also enter the ASCII
  57.          value for Space (32) by holding down the Alt-key and writing
  58.          32 on the numeric key-pad at the same time. This will also work
  59.          for any other ASCII-defined key.
  60.  
  61.