I wrote this hybrid [Batch/Vbscript] (inspired by this code)
in order to simulate something like a typewriter !
But, i can't figure out how we can write in same line like a typewriter ?
@echo off
Set Message=Hi ! StackOverFlow !
@cScript.EXE //noLogo "%~f0?.WSF" "%Message%" //job:info %~nx0%*
pause
<job id="info">
<script language="VBScript">
strText=wscript.arguments(0)
intTextLen = Len(strText)
intPause = 100
For x = 1 to intTextLen
strTempText = Mid(strText,x,1)
wscript.echo strTempText
WScript.Sleep intPause
If intPause <= 500 Then
intPause = intPause + 100
Else
intPause = 100
End If
Next
</script>
</job>