Thursday, 28 November 2013

HOW TO CREATE A COUNT DOWN TIMER USING NOTEPAD

1 comment :

COUNT DOWN TIMER

Guys If you want to create a count down timer without using any programming language then you are in the right place because now I am going to tell you about a very cool trick of  NOTEPAD which creates a count down timer. This cool stuff will show you a massage before one second from your time to up then send a massage "TIME IS UP."


For Creating that pity cool stuff you need :-

A cool software which is freely available with windows knows as NOTEPAD.

STEP 1:- Please open your notepad.

STEP 2:- Copy the code given below

@echo off
:Start
title timer
color A0
echo Type in an amount of time (Seconds)
set /p time=

color CE
:loop
cls
ping localhost -n 2 >nul
echo remaing time is %time%
echo please be hurry... only one second is remaing 
set /a time=%time%-1
echo %time%
if %time% EQU 0 goto Timesup
goto loop

:Timesup
title Time Is Up!

ping localhost -n 2 >nul
ping localhost -n 2 >nul
cls
echo The Time is up!
pause
cls
echo Thank you for using this cool trick.
pause
goto Web
goto Exit

:Web
start http://www.rohityadav.blogspot.in

:Exit
Exit
goto Exit 

STEP 3:- Save this file with ctimer.bat on your desktop (please be careful for its extension it should be .bat name can be any thing but extension must be .bat )
   Now your timer is ready to launch for launch you go to the next steps
STEP 4:- Double click on ctimer file 
then a window will open and that is like that :-

Now enter your's time limit in seconds like 10, 30,150,.. seconds  and enjoy this cool stuff and share us with your friends and you colleagues.

1 comment :

Anonymous said...

Thank you bro ?