Log in

View Full Version : Horizontal scrollbar with custom images...



rhiaro
04-22-2008, 07:16 PM
The script here is exactly what I'm looking for: http://www.dynamicdrive.com/dynamicindex2/pagescroller.htm

Except I need to adapt it so that it scrolls horizontally instead of vertically. Can anyone help me with this? Or direct me to somewhere with the script I'm looking for?

Thanks in advance :)

(P.S. Bit of a Javascript novice, so use small words please :o )

Medyman
04-23-2008, 03:42 AM
(P.S. Bit of a Javascript novice, so use small words please :o )

Find


function scrollwindow(){
window.scrollBy(0,myspeed)
}

Change to


function scrollwindow(){
window.scrollBy(myspeed,0)
}

The 0 and myspeed are switched. Easy enough for ya?

rhiaro
04-23-2008, 06:24 AM
Thank youu :D

It seems so simple when you put it like that! (Learning JS is definitely on my things to do list...)