i have a scrolling block in php on my website that is working. it has an up arrow and a down arrow in the block. when you put the mouse on the down arrow, the content changes direction and goes down. when you put the mouse on the up arrow, it will change again and start going up. for the life of me i cannot figure out how to get it to move faster. what i want is to make it go up at a faster rate. so the scrollamount is 2. so when you put your mouse on the up arrow, i want the scroll amount to be 4, but it doesn't work. can anyone help. here is the code. it's very small.
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