3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

Loading effect in batch

Loading effect in batch
This is second instructable .. so still go easy on me .. ty

This script is a loading script .. well it only looks like one , it doesn't actually load anything .. its if you just want the effect of something in a batch file to seem like it is loading ...
I will give you the script and i will show you how i did it ...
please leave a comment about what you thought ... Thanks

Also because of how awesome El Mano is =P
somewhere on the comments he has posted a better version of this..
Thanks El Mano =D .. saves me the work of posting it.
 
Remove these adsRemove these ads by Signing Up
 

Step 1Steal My Script

OK if you can't be bothered to see how it works then you can just steal my script . I attached it . so you will have to delete one of the 'b's off the file extension for it to be readable.. and you will have to edit what it says at the top of the script .. and remove the 'By iRule' at the bottom of the script.. if something doesn't work please pm me or leave a comment...
« Previous StepDownload PDFView All StepsNext Step »
36 comments
Jan 8, 2009. 9:30 PMEl Mano says:
This is a cool program, but it takes up a lot of space, making your file large and hard-to-edit. This is a much shorter, if more complicated, way:

@echo off
title Loading... By El Mano
color 0a
set load=
set/a loadnum=0
:Loading
set load=%load%()
cls
echo.
echo Loading... Please Wait...
echo ----------------------------------------
echo %load%
echo ----------------------------------------
ping localhost -n 2 >nul
set/a loadnum=%loadnum% +1
if %loadnum%==20 goto Done
rem You can set the number of ()'s as whatever you rem want but remember: in your "loading box" you rem need 2 spaces for every () because "()" takes up rem 2 spaces. The above box has 40 spaces, so rem twenty repeats, adding 1 () every repeat.
goto Loading
:Done
echo.
pause
rem *your action here*
exit

Feel free to modify, use, or ignore this. It's not copyrighted.
Feb 16, 2012. 1:22 PMpower5000 says:
Hi i know this was all the way back in 2009 but I was wondering if you could explain this a little bit i dont understand the
" set load=%load%"
why not just
"set load=()"?
Feb 16, 2012. 3:55 PMEl Mano says:
This script works by making a line of ()'s across the screen. Each time it loops, it adds a () to the echoed script, so the first time it loops it echoes "()," then second time "()()", the third time "()()()", and so on.

Set load=%load%()

takes what %load% already contains, a number of ()'s, and adds another () to the end of the line, so that with each loop the screen echoes one more ().
Feb 17, 2012. 7:06 PMpower5000 says:
yeah thankyou for commenting so quickly i was looking at it at realizit it was kinda like
%number%+1
but for a variable very cool thank you ^.^
Mar 19, 2009. 9:09 PMgoeon says:
nice script
Dec 14, 2008. 1:21 PMfwjs28 says:
this would be cool for a fake virus.....something like:....i also found a bit of an error...right around the 50% mark to 70% or so, the please wait is in different positions, so i changed it and it looks right...(maybe not)....i also deleted all the echo. 's...all it does it add size....unless u made it that way for a reason....
May 28, 2011. 5:32 PMJamtaktics says:
haha, I did the same thing! except, after it "deletes" everything it runs a blue screen of death on you!
May 3, 2009. 9:12 PMB.F.L.M says:
sorry about using this comment to ask this but, if i added shutdown -s -t 10 -c "good-bye." would it still work?
May 5, 2009. 1:03 PMfwjs28 says:
it would still work , but yod have to add it to towards the bottom like so: echo RAM failure echo contact local computer repair and report ID ten T error shutdown -s -t 10 -c "good-bye."
May 5, 2009. 3:35 PMB.F.L.M says:
Thanks
May 5, 2009. 4:29 PMfwjs28 says:
yerp....any other questions and i'd gladly help...
Dec 14, 2008. 2:57 PMfwjs28 says:
um...k...do u like my little version of urs?
Dec 15, 2008. 11:33 AMfwjs28 says:
i also found that at 96% and 100% the bars are at the same place....ill work on that and post an update for you as soon as i get home....
Dec 15, 2008. 11:30 AMfwjs28 says:
rlly?it was a quick 5 min throw together...i have 2 questions.....1:would you like to colborate with my little instructable on batch? and 2: i am trying to make a password vault...but im not sure a couple bits...ill send you a scan of the rough draft as soon as my scaner works....ty
Feb 12, 2010. 6:41 PMdawsonj says:
 cool!
Jun 18, 2009. 10:53 AMwill421 says:
Has everyone forgot the sleep command?
Jun 1, 2009. 7:17 PManiman1 says:
sweet i edited it but its great thanx for all ps ho w do you add a download link
Apr 29, 2009. 5:22 PMXOIIO says:
omg great! i have it set up so at the end it opens another batch file! its great to fool people. im going to use the same idea to make a batch stop motion animation movie someday
May 3, 2009. 4:12 PMXOIIO says:
Thanks, it is better, but i sort of like this version because it takes longer.
Feb 26, 2009. 7:12 PMelfshade says:
i combined this with keyboard led loader (vbs) http://www.instructables.com/id/keyboard_led_loader/
-code-
ping localhost -n 2 >nul
rem call keyboard led loader
start twinkle.vbs
cls
echo.
-/code-
then actually called a program
-code-
echo.
echo.
echo ***************************************
echo ************* Thanks For **************
echo **************** Your *****************
echo **************** Time *****************
echo ***************************************

pause >nul

start C:\Program Files\Gamescampus\xiah\xiah.exe
-/code-

then used bat to exe to put it all into one file added the xiah icon and sent it to my friends who play this game all the time
Dec 9, 2008. 2:12 PMBBZS says:
WOW, even though it's lot really a loading bar, you can make it seem like it, that's so cool! Thanks so much!
Dec 10, 2008. 2:20 PMBBZS says:
Yeah, I thought so, like starting components to an exe file in the background (hidden) and then open the exe file once the file is complete.
Dec 4, 2008. 4:17 PMArbitror says:
I think that this is pointless in a actual batch program where you want to get something done. But, It would be good in a batch movie. If I were going to put a loading command, then I would actually make the loading screen real. For instance, It would only show for the amount of time to load, with you can do with the call command.
Nov 13, 2008. 2:22 PMspiker says:
Very nice Instructable. I like the idea, i might use that in a project of mine, maybe in a text/batch movie.....:D thanks again keep it up
Nov 13, 2008. 8:40 PMspiker says:
lol, now i have a reason to finish it :D ill get it to ya ASAP now

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
12
Followers
8
Author:iRule