this is driving me crazy. i have seen a shout box in wich you can put your mouse over an image (onmouseover=\"SBspeed=4\" ) and the scrolling image speeds up. you put your mouse over the down arrow and the scrolling text reverses itself.
I have been trying to get that code to work in other blocks for weeks and i cannot figure it out. I have searched google with no luck on what SBspeed is. i think it's java, but i can't find anything. the only reference to it is the shout box code. Here is the code i have been looking at
PHP Code:
$bottom_content .= "<div style=\"padding: 1px;\" align=\"center\" class=\"content\"><a href=\"modules.php?name=Shout_Box\">"._SHOUTHISTORY."</a>";
        
$bottom_content .= "&nbsp;<span style=\"cursor: hand;\" onmouseover=\"SBspeed=4\" onmouseout=\"SBspeed=1\"><img src=\"$up_img\" border=\"0\" alt=\"\" width=\"9\" height=\"5\" /></span>";
        
$bottom_content .= "&nbsp;<span style=\"cursor: hand;\" onmouseover=\"SBspeed=1-5\" onmouseout=\"SBspeed=1\"><img src=\"$down_img\" border=\"0\" alt=\"\" width=\"9\" height=\"5\" /></span>";
        
$bottom_content .= "&nbsp;<span style=\"cursor: wait;\" onmouseover=\"SBspeed=0\" onmouseout=\"SBspeed=1\"><img src=\"$pause_img\" border=\"0\" alt=\"\" width=\"9\" height=\"5\" /></span>";
        
$bottom_content .= "</div><div style=\"padding: 1px; text-align: center;\" class=\"content\"><br />"._ONLYREGISTERED." <a href=\"modules.php?name=Your_Accoun 
so i made a simple little block trying to get it to speed up on the up arrow and reverse itself on the down arrow. here is that code

Code:
$content ="<marquee id=\"mappers\" direction=\"up\" height=\"100\" scrollamount=\"2\" onmouseover='this.stop()' onmouseout='this.start()'>";
$content.="<img src='../main/avitars/aspmm.jpg' style='vertical-align: middle; width: 148px; border: 0;'> </img>";
$content .="<center><a href=http://www.asp-gamers.com/map/modules.php?name=Private_Messages&file=index&mode=post&u=4><strong>{ASP}CyberShot</strong></center></a><br>";
$content .="<center><strong>{ASP}SniperOne</strong></center><br>";
$content .="<center><strong>{ASP}Andy</strong></center><br>";
$content .="<center><strong>{ASP}Gizmo</strong></center>";
$content.="</marquee>";
$content .="<hr><center><input type=image src='../main/cyber/images/Red1.gif'  onmouseover=\"mappers.direction='up' ;\"> <br><br>";
$content .="<center><input type=image src='../main/cyber/images/Red.gif'  onmouseover=\"mappers.direction='down' ;\"> <hr>";
with my code, i have it so that when you put your mouse on the down arrow(RED) the code will reverse and go down. and when you put it on the up arrow, it will reverse again and go up, but i cannot get it to go up faster.