Banner

Status
Not open for further replies.
I don't understand what you're saying. you want to do that with images? that website which YOU gave the url for let you do just that.
 
The Banner Rotater Only Gives You The "Same First Image" Every Page Load But, "Refresh's To The Next Image".

The Banner Randomizer Gives You A "Different Image" Every Page Load However, "Does Not Rotate To The Next Image".

This is what I mean't by combining "both" features.

What I'm Saying Is I Want A "Image That Randomizes @ Every Page Load" + "Timed Rotates To Next Available Image".
 
I know that Calzinger has a sig that changes everytime you refresh the page. Perhaps a PM towards him might get you some answers.
 
Ok sorry about that i was pretty confused though lol anyway i've got what you're looking for. but first let me just tell you im not a script writer i found this code on a webpage (http://www.cgiscript.net/cgi-script...mand=viewone&op=r&id=40&rnd=402.1230395883322) and have tampered with it to make the code shorter and remove the hyperlinks and the bits that aren't needed so if there are problems well i cant really help.

<SCRIPT LANGUAGE="Javascript"><!--

// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

function banner() {
};

banner = new banner();
number = 0;

// bannerArray
banner[number++] = "
"
banner[number++] = "
"
banner[number++] = "
"
banner[number++] = "
"
banner[number++] = "
"
// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(banner[increment]);
 
Status
Not open for further replies.
Back
Top Bottom