home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 (Alt) / The_Hacker_Chronicles_Volume_II-CD2.iso / ansiview.doc < prev    next >
Encoding:
Text File  |  1995-01-03  |  2.7 KB  |  68 lines

  1.                              ANSIVIEW documentation
  2.                        Copyright (c) 1994 by Cal Drennen
  3.  
  4.      ANSIVIEW is an ANSI file viewer written for use by CDV. Other ANSI viewers
  5. tested crashed and burned when invoked in a dos shell. This happened without
  6. fail if EMM386 was loaded. ANSIVIEW does not intercept characters on their way
  7. to dos. It reads the ANSI file; interprets the escape sequences; and does its
  8. own display.
  9.      ANSIVIEW can be used alone from the command line.
  10.  
  11.                                    ADVANTAGES
  12.  
  13.      1. Does not require ANSI.SYS. If the ANSI driver is present, it will not
  14.         interfere with ANSIVIEW. It is simply bypassed.
  15.  
  16.      2. Completely immune to "ANSI bombs".
  17.  
  18.      3. Optional speed control for animation.
  19.  
  20.      4. Optional wait for keypress after display to prevent a destructive cursor
  21.         in the image.
  22.  
  23.      5. Turns off the cursor during display to eliminate the jittery flicker
  24.         caused by rapid cursor movement during animation.
  25.  
  26.      6. Gives you the option of displaying in 43 or 50 line mode. EGA can
  27.         display 43 lines. VGA can display 50 lines.
  28.  
  29.                             COMMAND LINE PARAMETERS
  30.  
  31. Usage: ANSIVIEW filename.ext [speed] [w][seconds] [/4350]
  32.  
  33.      filename.ext = An ANSI file to be displayed. Wildcards OK.
  34.  
  35.      speed = Optional speed of the display. Typical values
  36.              are 0-20 but can be as high as 65535. 0 is fastest.
  37.              The default is 0.
  38.  
  39.      w = Wait for keypress with cursor off when display is complete.
  40.  
  41.      w[seconds] = Wait for selected number of seconds after display. Does not
  42.                   require keypress. Any key aborts the delay.
  43.  
  44.      /4350 = Use 43 or 50 line mode. EGA can display 43 lines; VGA 50.
  45.  
  46.      Press <ESC> to skip the file being displayed.
  47.  
  48.      Press any key during a delay between images in a slideshow to skip the
  49.      delay.
  50.  
  51.      Press Ctrl-C or Ctrl-Break to abort a slideshow.
  52.  
  53.  
  54. Examples of valid commands:
  55.  
  56.      ANSIVIEW somefile.ans          [Displays ANSI file]
  57.      ANSIVIEW somefile.ans 5        [Displays more slowly]
  58.      ANSIVIEW somefile.ans 10 w     [Displays more slowly & waits for keypress]
  59.      ANSIVIEW somefile.ans w        [Default speed, waits for keypress]
  60.      ANSIVIEW *.ans w2              [Display all ANSI files matching the
  61.                                      wildcard name. Wait two seconds between
  62.                                      files. To abort entire sequence press ESC
  63.                                      during a wait for keypress]
  64.     ANSIVIEW somefile.ans /4350     [Displays in 43 line mode on EGA monitor or
  65.                                      50 line mode on VGA]
  66.  
  67.      Command line parameters after the filename can be in any order.
  68.