Control Browser Scroll Bar?

if u mean the colors and style of the scroll bar, then yes u can. here is a piece of code:

function PaintScrollBar()
{
document.body.style.scrollbarFaceColor="#eef5ff"
document.body.style.scrollbarArrowColor="#dfeeff"
document.body.style.scrollbarTrackColor="red"
document.body.style.scrollbarShadowColor="black"
document.body.style.scrollbarHighlightColor="blue"
document.body.style.scrollbar3dlightColor="white"
document.body.style.scrollbarDarkshadowColor="red"
}
 
Thank you.

Actually I want to control the movement of scroll bar, and I was found it, use "parent.scroll(x,y)"

Anyway, your information is also useful for me... :)
 
Back
Top