Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: yock
  • Order by date
  1. yock

    scrolling functions

    i just figured out that its not scroll exactly how i need it to. its needs to be able to keep scrolling not just repeat the same action over and over
  2. yock

    scrolling functions

    here is what i have <script type=&quot;text/javascript&quot;> 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...
  3. yock

    Frames controler

    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
  4. yock

    Frames controler

    is there a way i could ad an onclick=&quot;scroll()&quot; option somewhere to trigger this effect?
  5. yock

    Frames controler

    <script type=&quot;text/javascript&quot;> () { for (i=1; i<=600; i++) { window.scroll(i,1) } } </script>
  6. yock

    Frames controler

    success...it works great..thx a lot
  7. yock

    Frames controler

    thx for your help btw, well i found something that would add to the effect of the scrolling. <script type=&quot;text/javascript&quot;> function scrolldown() { for (i=1; i<=600; i++) { window.scroll(1,i) } } </script> i know...
  8. yock

    Frames controler

    ok what does parent in javascript:parent.ImageFrame.scrollBy(100,0) stand for?
  9. yock

    Frames controler

    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...

Part and Inventory Search

Back
Top