Hi! Just want to share this with you guys. I know this is very elementary but I find it useful. I was reading though tipidpc before I got this idea from one of the threads there. I usually open many tabs, all the same tabs in my firefox browser everyday. Now, after I read the post from tipidpc that he wants to open multiple browser windows I thought it would be a good idea if I did it too with firefox. So I tried to get some idea from the posted command line codes and researched some arguments pertaining to running firefox in the command line. Here's the end result
@ECHO OFF
REM Opens multiple tabs for firefox
REM For some sites it might be possible to append parameters like
REM www.website.com?username=<username>&password=<password>
SET BROWSER=firefox.exe
SET WAIT_TIME=2
START %BROWSER% -new-tab "mail.yahoo.com"
@ping 127.0.0.1 -n %WAIT_TIME% -w 1000 > nul
START %BROWSER% -new-tab "javaranch.com"
START %BROWSER% -new-tab "devpinoy.org"
START %BROWSER% -new-tab "tipidpc.com"
START %BROWSER% -new-tab "pinoyforum.net"
START %BROWSER% -new-tab "meebo.com"
START %BROWSER% -new-tab "google.com"
and I just save it to a batch(.bat) file.
There is actually an option in firefox to open previously opened windows. But I prefer doing it this way since I only have to click the batch file and voila! Every website I often visit are open! I hope you guys find this useful! Thanks to the guys at tipidpc.