Havent seen this posted here, but .....

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Havent seen this posted here, but .....
vaquero
CZ Newbie
vaquero has been a member for over 17 year's 17 Year Member
canada.gif
Occupation: Student, Vocalist
Age: 31
Gender: Male
Status: Offline
Joined: Jan 22, 2007
0.00 posts per day
Posts: 1
Points: 0
 Yahoo Messenger MSN Messenger 
Have seen this done on web pages before. I am working on a page for a ladder league, and what i am trying to find is some type of ( i assume) script which will scroll across the bottom of the browser. ex: welcome to [ Register or login to view links on this board. ] i understand cases doesnt allow scripts and if it is a script i will have to do a page redirect, etc. does anyone know what it is i mean? and can anyone possibly assist me with this script? i have been looking for days to no avail, and even checked in your archives back to 2005 with no luck. Any help will be greatly appreciated, tyvm
~ icon_neutral.gif Garth



Back to top Reply with quote
#2   re: Havent seen this posted here, but .....
GoddsEgo
PayPal Donation
CZ Moderator
GoddsEgo has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Jun 26, 2003
0.16 posts per day
Posts: 1211
Points: 69,166
 Yahoo Messenger  
Hi vaquero,
Welcome2Cz!


If you are talking about a statusbar scroller then you do not have to redirect the leagues main page just put a iframe on main with the script on it.

Take the following code edit the message and save as "statusscroller.htm" then upload to your webspace...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<BODY onLoad="scrollit(100)">
<SCRIPT>
<!--
function scrollit(seed) {
var m1 = "YOUR";
var m2 = " MESSAGE";
var m3 = " HERE";
var m4 = "";
var msg=m1+m2+m3+m4;
var out = " ";
var c = 1;
if (seed > 100) {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
}
}
}
//-->
</SCRIPT>
</body>
</html>


Then edit the following code so that the address to the page you uploaded is correct and paste it in the "edit right table" of your admins tools...

<iframe src="http://www.THE_ADDY_TO_statusscroller.htm" style="width:0px; height:0px; border:0px"></iframe>




Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum