To get the effect of two or more scrollers on your page, you have two basic choices, you can use an on page scroller, such as the one you first mentioned in this thread, modified for multiple usage on a page like the one shown here:
http://home.comcast.net/~jscheuer1/s...side_table.htm
Or, you can adapt the iframe scroller that you are using. To do that, each scroller must have its own scrollspeed variable. So the for first one, you can use the script 'as is'. For the second, make these changes to the controls:
Code:
<div style="width:150px;" align="right">
<a href="#" onMouseover="scrollspeed2=-2" onMouseout="scrollspeed2=0">Up</a> | <a href="#" onMouseover="scrollspeed2=2" onMouseout="scrollspeed2=0">Down</a>
</div>
And on the script on its content page:
Code:
function initialize(){
if (window.parent.scrollspeed2!=0){
speed=window.parent.scrollspeed2
scrollwindow()
}
}
For yet more scrollers, use scrollspeed3 and so on.
Notes: There are relative advantages and disadvantages to each method.
Bookmarks