No free space, you should provide us with your code so we can help you find the problem
peter_budo
Code tags enforcer
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902
Your script work absolutly fine for me, I did use only short listing of few address, changed time for faster cycling and had no problems ( used IE6 and firefox 1.0.7).
<html>
<head><title>Control page</title>
<SCRIPT language="JAVASCRIPT">
var Win;
var page_index=0;
var page = new Array();
page[0] = "http://mail.yahoo.com/";
page[1] = "http://www.daniweb.com/";
page[2] = "http://www.dutchfightclub.nl/";
page[3] = "http://www.dabs.com/";
page[4] = "http://www.lowestonweb.com/";
page[5] = "http://www.vantecusa.com/";
function next_page()
{
page_index++;
if (page_index == 6)
page_index = 0;
Win.location.replace(page[page_index]);
}
</SCRIPT>
</head>
<body>
<h1>Auto Start Page Rotator</h1>
<SCRIPT language="JAVASCRIPT">
Win=window.open(page[0], 'Win','resize=yes,toolbar=yes,status=yes,scrollbars=yes,screenX=0,screenY=0,width=1000,height=666')
setInterval("next_page();",8000);
</SCRIPT>
</body>
</html>
You can check it here (I will removed from website when you tell me, it just example for you to see)
Dont forget people have often blocked pop ups so they may not want to see it in this form
To admin - if you feel this is advertaising please remove provided url, I have not objections
peter_budo
Code tags enforcer
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902
It has to do something with your browsers settings than. When I open that page I got message "auto start rotator" and then second window open which is rotating url. Also you should upload this on server, I don't know if this will work from station.
peter_budo
Code tags enforcer
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902
peter_budo
Code tags enforcer
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902