Multiple home pages in rotation

2002-03-05 Thread Chris Newman

Hiya,
Mozilla is absolutely superb. Anyone think that having a feature
where you can select multiple home pages would be a good idea ? I'd
like Mozilla to rotate on a new browser through a list of home pages,
eg. news.com, oreillynet.com, mozilla.org, java.sun.com etc. etc.
rather than just always being stuck with one home page all the time.

:)
 
_
Chris Newman
[EMAIL PROTECTED]
www.floor51.com
___
Sun Certified Java 2 Programmer
___
My secure email PGP key is at
www.floor51.com/chrisnewman.asc




Re: Multiple home pages in rotation

2002-03-05 Thread Tim Wunder

Chris Newman wrote:
> Hiya,
> Mozilla is absolutely superb. Anyone think that having a feature
> where you can select multiple home pages would be a good idea ? I'd
> like Mozilla to rotate on a new browser through a list of home pages,
> eg. news.com, oreillynet.com, mozilla.org, java.sun.com etc. etc.
> rather than just always being stuck with one home page all the time.
> 

Not quite what you asked for, but it may be sufficient:
RFE: Ability to "snapshot" all TABs in a window as bookmark [bookmark 
groups], http://bugzilla.mozilla.org/show_bug.cgi?id=102130

Regards,
Tim





Re: Multiple home pages in rotation

2002-03-05 Thread Geraint Edwards

Another possible solution that would work in most browsers is to write 
yourself a little HTML page and save it locally.  In the page have some 
  javascript that selects the 'home page' you want either randomly or 
based on the date/time.

If you wanted to be really fancy you could save the page in the chrome 
and use a cookie to keep track of the 'homepage' you last visited so 
that you always get the next page in the sequence.

Geraint
---
Vizimarks - the Internet Scrapbook!
Visual Bookmarks, Online Favorites, and an Online Scrapbook.
Visit  http://www.vizimarks.com  today.





Re: Multiple home pages in rotation

2002-03-05 Thread Neil M.

Chris Newman wrote:
> Hiya,
> Mozilla is absolutely superb. Anyone think that having a feature
> where you can select multiple home pages would be a good idea ? I'd
> like Mozilla to rotate on a new browser through a list of home pages,
> eg. news.com, oreillynet.com, mozilla.org, java.sun.com etc. etc.
> rather than just always being stuck with one home page all the time.

Couldn't you just put a line of javascript in there to pick a random 
number between 1 and n and then depending on the number display a 
different page?

Bah, I'll just program it here...

javascript:a = Math.round(Math.random() * 3);if (a == 1) { 
document.location="http://www.mozillanews.org";} else if (a == 2) { 
document.location="http://mozilla.org";} else { 
document.location="http://www.mozillazine.org";}

Testing yeah it works.





Re: Multiple home pages in rotation

2002-03-05 Thread Michael A. Koenecke

"Neil M." <[EMAIL PROTECTED]> wrote in news:3C8509F5.6070809
@sympatico.ca:

> Chris Newman wrote:
>> Hiya,
>> Mozilla is absolutely superb. Anyone think that having a feature
>> where you can select multiple home pages would be a good idea ? I'd
>> like Mozilla to rotate on a new browser through a list of home pages,
>> eg. news.com, oreillynet.com, mozilla.org, java.sun.com etc. etc.
>> rather than just always being stuck with one home page all the time.
> 
> Couldn't you just put a line of javascript in there to pick a random 
> number between 1 and n and then depending on the number display a 
> different page?
> 
> Bah, I'll just program it here...
> 
> javascript:a = Math.round(Math.random() * 3);if (a == 1) { 
> document.location="http://www.mozillanews.org";} else if (a == 2) { 
> document.location="http://mozilla.org";} else { 
> document.location="http://www.mozillazine.org";}
> 
> Testing yeah it works.

Interesting. How would one go about putting such a script in one's Home 
location in Mozilla?




Re: Multiple home pages in rotation

2002-03-05 Thread Christian Biesinger

Michael A. Koenecke wrote:
> "Neil M." <[EMAIL PROTECTED]> wrote in news:3C8509F5.6070809
> @sympatico.ca:
>>javascript:a = Math.round(Math.random() * 3);if (a == 1) { 
>>document.location="http://www.mozillanews.org";} else if (a == 2) { 
>>document.location="http://mozilla.org";} else { 
>>document.location="http://www.mozillazine.org";}
>>
>>Testing yeah it works.
> 
> 
> Interesting. How would one go about putting such a script in one's Home 
> location in Mozilla?

Just put the above lines in the location text field as one line.

-- 
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety."
  -- Benjamin Franklin





Re: Multiple home pages in rotation

2002-03-05 Thread Jorey Bump

Christian Biesinger wrote:
> Michael A. Koenecke wrote:
> 
>> "Neil M." <[EMAIL PROTECTED]> wrote in news:3C8509F5.6070809
>> @sympatico.ca:
>>
>>> javascript:a = Math.round(Math.random() * 3);if (a == 1) { 
>>> document.location="http://www.mozillanews.org";} else if (a == 2) { 
>>> document.location="http://mozilla.org";} else { 
>>> document.location="http://www.mozillazine.org";}
>>>
>>> Testing yeah it works.
>>
>>
>>
>> Interesting. How would one go about putting such a script in one's 
>> Home location in Mozilla?
> 
> 
> Just put the above lines in the location text field as one line.

Or write a page with the above code and set it as your home page. Then 
you can continue to add more URLs and use it with any browser.