here is what i have
<script type="text/javascript">
function scrollright()
{
for (i=1; i<=600; i++)
{
window.scroll(i,1)
}
}
</script>
i need to get it to scroll left and be able to set it to scroll to exact spots, i've been messing around with this and...
i keep getting a stack overflow on the
window.scroll(i,1)
line? i changed it slightly to get it to put off the effect from teh right to left instead of down
thx for your help btw, well i found something that would add to the effect of the scrolling.
<script type="text/javascript">
function scrolldown()
{
for (i=1; i<=600; i++)
{
window.scroll(1,i)
}
}
</script>
i know...
well its hard to explain with no example....it is done in frames...ex: there are 2 frames one on top and one on bottom the top one will have a picture that is roughly 4500pixles wide the bottom one will have a navagation area in it to control the scrolling of the top frame without the use of a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.