pHatBambi said:TheHavenNet - Is run by a procedural entity, aka - RoninStorm.
I've told you before, I'm a complex contrivance of randomly interacting objects not some loopy procedural beast!
pHatBambi said:TheHavenNet - Is run by a procedural entity, aka - RoninStorm.
Ronin Storm said:I've told you before, I'm a complex contrivance of randomly interacting objects not some loopy procedural beast!
T-Bone said:Yeh, what I meant was number 1. Also what I meant by "I don't know how" is that I don't know the Java coding
<html>
<head>
<title>Banner Demo</title>
<script type="text/javascript">
if (document.images)
{
// First create an array with links to the images you want to
// display as banners. I chose 3 image locations.
adImages = new Array("[URL="http://www.devhood.com/images/DH-banner-whitebg.gif"]http://www.devhood.com/images/DH-banner-whitebg.gif[/URL]",
"[URL="http://us.i1.yimg.com/us.yimg.com/i/ww/m6v3.gif"]http://us.i1.yimg.com/us.yimg.com/i/ww/m6v3.gif[/URL]",
"[URL="http://www.google.com/images/logo.gif"]http://www.google.com/images/logo.gif[/URL]");
// When the user clicks on a banner it should take the user to
// the website of that company. Therefore we create another
// array with a list of URLs. Keep the order the same as images.
adURLs = new Array("[URL="http://www.devhood.com"]www.devhood.com[/URL]",
"[URL="http://www.yahoo.com"]www.yahoo.com[/URL]",
"[URL="http://www.google.com"]www.google.com[/URL]");
thisAd = 0;
}
// The following function cycles through each banner image.
// Notice the use of the variable thisAd to go from 0 to 2 and then
// back to 0. JavaScript has an object called document whose
// member adBanner can be set to the current banner to display.
function cycleAds()
{
if (document.images)
{
if (document.adBanner.complete)
{
if (++thisAd == adImages.length)
thisAd = 0;
document.adBanner.src = adImages[thisAd];
}
}
// change to next banner every 15 seconds
setTimeout("cycleAds()", 4300);
}
// This function is used to direct the user to the website when
// the user clicks on a particular banner image.
function gotoAd()
{
document.location.href = "http://" + adURLs[thisAd];
}
</script>
<body bgcolor=ffffff onload="cycleAds()">
<a href="javascript:gotoAd()">
<img name="adBanner" src="[URL="http://www.devhood.com/images/DH-banner-whitebg.gif"]http://www.devhood.com/images/DH-banner-whitebg.gif[/URL]" border="0" alt="Click here to visit these links"></a>
</body>
</html>
DeZmond said:but it may have been FORTRAN.
But... Is there a newer version that has that functionality? It sounds like something that would be useful...Ronin Storm said:I most certainly do not neatly align myself into columns, thank you very much!