How to Make a Timer With Notepad.

by HiPoweredHacker in Circuits > Computers

106895 Views, 14 Favorites, 0 Comments

How to Make a Timer With Notepad.

notepad-screen[1].gif
Open notepad.

Here's a base code frame that you can use to make a timer.

@echo off
color 0a
:1
pause
timeout 60
goto 1

color changes the color combination in the application file
timeout set the time in seconds
the :1 and the goto 1 loops the timer so that it stops and resets so you can start it again with a press of a button.
the @ehco off keeps the app from putting other stuff on the app screen to keep it clean and simple.

5[1].png
save the file as a text file ".txt" in the desired location.

5[1].png
then save it again, but this time as a batch file ".bat" in the desired location.

imagesCAKMOW7J.jpg
run the batch file.

notepad-screen[1].gif
to edit open the text file, make your changes, save it as a text file, then save agian as a batch file.

imagesCAKMOW7J.jpg
now you have a timer.