Basic Animation

702 3 12
                                    

Here we will take a look at a simple batch file script but works with animation, as always go try these out for yourself and see if you can make your own animations building upon this.

@echo off

title Basic Animation

echo L

color 0c

ping localhost -n 2 >nul

cls

color 0a

echo L O

ping localhost -n 2 >nul

cls

color 0c

echo L O A

ping localhost -n 2 >nul

cls

color 0a

echo L O A D

ping localhost -n 2 >nul

cls

color 0c

echo L O A D I

ping localhost -n 2 >nul

cls

color 0a

echo L O A D I N

ping localhost -n 2 >nul

cls

color 0c

echo L O A D I N G

pause >nul

Batch File ProgrammingWhere stories live. Discover now