Skip to content

Latest commit

 

History

History
33 lines (32 loc) · 2.17 KB

README.md

File metadata and controls

33 lines (32 loc) · 2.17 KB

AnimatedTextConsole by JAMGALACTIC

AnimatedTextConsole is a simple .NET Console Application that allows you to display animated, typewriter-style text in the Windows CMD.

The purpose of this app was to assist with the creation of the text animations with the intent of being recorded by screen-recording software like OBS Studio. My personal reason for writing this program was for creating android boot animations with a terminal style text animation.

To use the program

Run AnimatedTextConsole from the command line. The only required argument is the -txt argument which specifies a text file to read lines of text from. Several other optional arguments can be used.
Example: c:\program directory> AnimatedTextConsole -txt "c:\linesoftext.txt"

Complete List of Arguments

Arg Description Usage
-cdset delay in ms between characters-cd 30
-ddset delay in ms for period character (.)-dd 500
-ldset delay in ms before next line-ld 800
-eldset delay in ms for empty lines-eld 0
-rldrandomize line delay between by +/- 500 ms-rld
-dsenable double spacing between lines-ds
-txtset txt filepath with lines to display-txt "c:\users\bobdole\downloads\textlines.txt"
-wset window width in columns-w 50
-hset window height in columns-h 50
-cblclear console before last line of text-cbl

Bypass Delays For Certain Lines

To bypass defined delays for certain lines of text, begin those lines with "!"
Example:

!This line of text will have no character or line delays

Program Execution Example