Code:
Math.max(1, memoryspeed-1) //slow speed down by 1 for NS
this one says : make the speed lower for Netscape based browser...
I've been able to find how to cnahge the direction, it was easy
make sence like you said but in here...
Code:
function scrollmarquee(){
if (parseInt(memoryscroller.style.left)>(actualwidth*(-1)+8))
memoryscroller.style.left=parseInt(memoryscroller.style.left)+copyspeed+"px"
else
memoryscroller.style.left=parseInt(memorywidth)+8+"px"
}
this this function I've changed the - to + (mark in red) to make the style.left grow instead of shrinking, so its moving to the right but....
the problem is that i can't find the way to set the init position to be at the left side instead of the right side, and how to change the IF (mark is blue) to answer the question "when to go back to the start"
thanks again, and i hope someone else will post another solution
Bookmarks