This one was actually pretty easy. The hardest part was getting the buttons to look the way I wanted. The script itself needs only two very minor changes. Find this line:
Code:
window.scrollBy(0,myspeed)
and change it to this:
Code:
window.scrollBy(myspeed,0)
You should adjust the 'var Hoffset=' to 110 as well. To change the arrows so that they look fairly good, use the attached images and replace the division containing them in the HTML with this table:
HTML Code:
<table id="staticbuttons" style="position:absolute;cursor:pointer;"><tr><td> <a
onmouseover="myspeed=-thespeed" onmouseout="myspeed=0"><img src="arrows_lt.gif"
border="0" alt=""></a></td><td> <a onmouseover="myspeed=thespeed"
onmouseout="myspeed=0"><img src="arrows_rt.gif" border="0" alt=""></a></td></tr></table>
Bookmarks