I assume you mean the initialdelay setting. Sure, to get it to apply whenever the scroller starts scrolling from the top again, try changing the below lines in external.htm:
Code:
if (parseInt(dataobj.style.top)<thelength*(-1))
dataobj.style.top="5px"
setTimeout("scrollDiv()",40)
to:
Code:
if (parseInt(dataobj.style.top)<thelength*(-1)){
dataobj.style.top="5px"
setTimeout("scrollDiv()", initialdelay)
}
else
setTimeout("scrollDiv()",40)
You'll also want to change the below line:
Code:
setTimeout("getdataheight()", initialdelay)
to just:
Code:
setTimeout("getdataheight()", 20)
Bookmarks