| 1. |
Solve : CMD fun? |
|
Answer» What are some fun THINGS and tricks you can do in command prompt? I feel like having a little fun with the mostly unused feature! is there a way to make it change color like your code WHILE it runs?Nope. That's like asking a batch file to print something while you are saving it to the desktop. Quote Is it possible to run a batch file full screen? INot that I know of... You could have a look at the Mode command though. Code: [Select]mode 200,200Tnx for the quick answer. Unfortunate, but kinda expected. As your example indicates Heh, it's like trying to drink from a glass while you're filling it up No no!, THAT's perfectly possible There is a sleep command that comes with the Win2003 Resource Kit or you can make do with the poor man's ping command: Code: [Select]@echo off for %%a in (A B C D E F 0 1 2 3 4 5 6 7 8 9) do ( for %%b in (A B C D E F 0 1 2 3 4 5 6 7 8 9) do ( color %%a%%b echo All Your Chameleon Supplies Here ping -n 3 127.0.0.1 > nul ) ) Maybe this will give you some ideas. Code: [Select]@echo off :1 for %%a in (A B C D E F 0 1 2 3 4 5 6 7 8 9) do ( for %%b in (A B C D E F 0 1 2 3 4 5 6 7 8 9) do ( color %%a%%b ) ) goto :1This looks pretty....Is it possible to output characters to predefined rows/columns, or do you just need spaces and enters to get that effect? could be the start of some simple command prompt GRAPHICS..To run it in full screen you could just create a shortcut and under the properties of the shortcut select full screen, that works.Oh sweet, I kinda assumed that wouldn't work for the command shell :SQuote from: Schop on June 15, 2008, 08:15:08 AM Oh sweet, I kinda assumed that wouldn't work for the command shell :SGlad i was of help |
|