|
Answer» Hi Dudes,
Ive Attached Ascii Art Here In Which An Minotaur Rips Off An Human's Head
I Was Thinking If Experts Could Just Create An ANIM Of It By Using Time Delay , Ping , Using Various Colours
Anim :: Minotaur Waving His Hand Up And Down With Humans Head ::Minotaur Laughing (Optional)
Well Me And My Friend Are TRYING To make An Batch Movie (Extremely Short) Hence I Need This
=============== EDIT ===============
Fixed The Text File
[recovering disk space - old attachment DELETED by admin]possible with ANSI escape codes and ansi.sys. research ANSI ART.
for batch file:
draw your ascii art in 78*24 screens to prevent a carriage return at end-of-line. then, TYPE the screens one at a time with a CLS in between.
Code: [Select]@echo off cls type anim01.txt cls type anim02.txt cls type anim03.txt cls type anim04.txt cls type anim05.txt cls :: :: type anim??.txt cls No. You need to study ANSI Art. Look on Face Book Ansi ART is on FacebookSorry But I Didnt Understand Look up all the ASCII character codes to get the symbols for "writing" ASCII Art(ANSI Art) http://www.asciitable.com/
In the code you can use the PING command as a WAIT command to time the Animation: Code: [Select]ping -n 1 -w <Millisecond Delay> 1.1.1.1 Code: [Select]ping -n 1 -w 5000 1.1.1.1This will time delay for 5 seconds(5000 miliseconds)
Follow tikbalang's advice about the code and the screen size(78 characters wide, 24 characters tall).
You can then include the PING command between type and cls: Code: [Select]@echo off cls type anim01.txt ping -n 1 -w 5000 1.1.1.1 cls type anim02.txt ping -n 1 -w 5000 1.1.1.1 cls type animNN.txt ping -n 1 -w 5000 1.1.1.1 cls
Hope this helps, Nick(macdad-)
|