This will teach you how to program an website selector which opens websites upon the touch of a button. Open up Notepad and then copy and paste the program code below. When done, name the saved file anything that ends in .bat, make sure it is not .txt or it will be just writing instead of a program. Here is the program code:
@echo off
TITLE Website Selector
echo Created by Philip Dunay
echo Version 1.0
echo.
echo Starting up…
ping 127.0.0.1 -n 2 -w 1000>nul 2>nul
ping 127.0.0.1 -n 2 -w 1000>nul 2>nul
ping 127.0.0.1 -n 2 -w 1000>nul 2>nul
ping 127.0.0.1 -n 2 -w 1000>nul 2>nul
cls
:A
cls
echo Menu:
echo [1]- www.factoidz.com
echo [2]- www.runescape.com
echo [3]- www.youtube.com
echo [4]- www.facebook.com
echo.
echo What is your selection (1-5)? Press enter to confirm.
echo.
set /p number=
cls
if %number%==1 start www.factoidz.com
if %number%==2 start www.runescape.com
if %number%==3 start www.youtube.com
if %number%==4 start www.facebook.com
cls
echo Thank you for using Website Selector,
echo would you like to make another website selection?
echo.
echo Enter [Y] for yes, or [N] for no.
echo.
set /p select=
if %select%==Y goto A
if %select%==N goto closing
:closing
cls
echo Thank you for using Website Selector by Philip Dunay!
echo.
echo Program will terminate shortly
ping 127.0.0.1 -n 2 -w 1000>nul 2>nul
ping 127.0.0.1 -n 2 -w 1000>nul 2>nul
ping 127.0.0.1 -n 2 -w 1000>nul 2>nul
It ends at the line above.
This will help a lot, just keep it open, you may even add to it by observing it and seeing that first you write the reminder, then an index in the label for starting the application. You may also edit the program and just change the website URL in the section of where the old one was. I hope this helps!








