Forum Moderators: open

Message Too Old, No Replies

Iframe Scroller Script

         

ImpulseRADIO

6:00 pm on Aug 20, 2004 (gmt 0)

10+ Year Member



Hi folks, I recently tried using the script at DynamicDrive [dynamicdrive.com...]
for an iframe scroller. view the page here: [davidson.ath.cx...]
that is what i'm trying to do, i have it all setup but theres no way to set it to scroll horizantaly from left to right instead of up and down. if you can figure out this script and get it to scroll correctly can you please let me know, it would be greatly appreciated :)

Bernard Marx

9:24 pm on Aug 20, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



At a glance, perhaps change..

window.scrollBy(0,speed)

to
window.scrollBy(speed,0) 

and

temp=(document.all)? document.body.scrollTop : window.pageYOffset

to
temp=(document.all)? document.body.scrollLeft : window.pageXOffset

There may be some issues in newer browsers with the second statement.
Try it out anyways.

ImpulseRADIO

9:18 pm on Aug 22, 2004 (gmt 0)

10+ Year Member



works great, thanks you very much! appreciate you taking a look for me