pausing up down message scroller
well the error was actually really simple, basically just a typo 
in the else block of each move() function, just change the line:
tdiv.style.top=parseInt(scrollerheight);
to:
tdiv.style.top=scrollerheight;
Code:
function move3(whichdiv){
tdiv=eval(whichdiv)
if (parseInt(tdiv.style.top)>0&&parseInt(tdiv.style.top)<=5){
tdiv.style.top=0+"px"
setTimeout("move3(tdiv)",scrollerdelay)
setTimeout("move4(second2_obj)",scrollerdelay)
return
}
if (parseInt(tdiv.style.top)>=tdiv.offsetHeight*-1){
tdiv.style.top=parseInt(tdiv.style.top)-5+"px"
setTimeout("move3(tdiv)",50)
}
else{
tdiv.style.top=scrollerheight //this line here was changed
tdiv.innerHTML=messages[i]
if (i==messages.length-1) i=0
else i++
}
}
how the most simple things can be the most annoying.
Bookmarks