PDA

View Full Version : How do I make Rotating Popup Windows upon entrence?


SWiSHSource.com
09-01-2002, 05:16 PM
Does anyone here know how to creat a script for rotating popup windows? When someone enters my site, I want a random popup windows. Like when someone enters my site, flashkit.com will popup, then the next time that person enters my site freelayouts.com popups up. I only want 8 sites in the rotating popup script. Thank you all very much for your time!!! Peace, Michael

Mr J
09-01-2002, 06:59 PM
Try the following:


<script>
<!--
pick=new Array() //
pick[pick.length] = "http://www.yahoo.com"
pick[pick.length] = "http://www.huntingground.net"
pick[pick.length] = "http://www.microsoft.com"
pick[pick.length] = "http://www.pcplus.co.uk"
pick[pick.length] = "http://www.brainjar.com"
pick[pick.length] = "http://www.anfyteam.com"
pick[pick.length] = "http://www.hrgiger.com"
pick[pick.length] = "http://www.free.com"

function Win(){
i=parseInt(Math.random()*pick.length)
var newWin=open((pick[i]),'','width=600,height=400,top=50,left=50' );
}

onload=Win
// -->
</script>

SWiSHSource.com
09-01-2002, 07:15 PM
Well, that script above doesnt seem to be working :confused:

I'm supposed to just copy that into the head of my page and just change the links, right? Thank you for your help!!! Michael

Mr J
09-01-2002, 08:20 PM
The script has not rendered correctly in this page
The line in bold should be one line


<script>
<!--
pick=new Array() //
pick[pick.length] = "http://www.yahoo.com"
pick[pick.length] = "http://www.huntingground.net"
pick[pick.length] = "http://www.microsoft.com"
pick[pick.length] = "http://www.pcplus.co.uk"
pick[pick.length] = "http://www.brainjar.com"
pick[pick.length] = "http://www.anfyteam.com"
pick[pick.length] = "http://www.hrgiger.com"
pick[pick.length] = "http://www.free.com"

function Win(){
i=parseInt(Math.random()*pick.length)
var newWin=open((pick[i]),'','width=600,height=400,top=50,left=50' );
}

onload=Win
// -->
</script>

So I have attached a zip file.

SWiSHSource.com
09-01-2002, 09:13 PM
Thank you soooo much!!! you are truly amazing!!! This is exactly what i wanted!!! Peace, Michael