Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.36 KB

README.md

File metadata and controls

50 lines (37 loc) · 1.36 KB

typewriter

A very simple typewriter plugin for CMD. Supply the string to print, and the time delay in MS.

Syntax

The syntax of the plugin is as follows:

typewriter.exe {"quoted string"} {sleep time in ms}

Examples

**typewriter "hello, world!" 100** - Displays hello world with a 1/10th of a second delay per character.

This is an example image

@echo off
Title TypeWriter Demo - www.batch-man.com
cls

REM Including Typewriter Location into the default PATH
Pushd "..\typewriter\bin"
Set "Path=%Path%;%cd%"
Popd

color 09
echo This is a demo of the typewriter plugin.
echo.&pause&Echo.
typewriter "This should display relatively quickly" 50
echo.&pause&Echo.
typewriter "This should display about half as fast" 100
echo.&pause&Echo.
typewriter "A little slower..." 200
echo.&pause&Echo.
typewriter "Half a second" 500
echo.&pause&Echo.
typewriter "One second delay" 1000
echo.&pause&Echo.
echo Demonstration finished.
echo.&pause&Echo.
exit

This will demonstrate diffrent ways to use typewriter plugin Animation

**Video-**https://www.youtube.com/watch?v=BsTxP5uI4Ps

**Article-**https://batch-man.com/typewriter/