i have this code based on php. it's a marquee code. I was able to modify it so that when you put your mouse on the down arrow, the text will reverse, and when you put it on the up arrow, the text will go up. but i am trying real hard to get it to move up at a faster rate when you put your mouse on the up arrow and faster when on the down arrow. but i cannot figure it out. can anyone help.
PHP Code:
<?php
#### Generated by Block Creator by Disipal Site (www.disipal.net) ###
if (eregi("block-{ASP}_mappers.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}
$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>";
?>
Comment