Results 1 to 6 of 6

Thread: Is there a script very similar to this one?

  1. #1
    Join Date
    May 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Is there a script very similar to this one?

    Hi. The scipt I'm looking for is almost exactly the same as the one at http://www.dynamicdrive.com/dynamici...rollerlink.htm but what I want is it to scroll up and down, not left and right. Is there a script that does it or can this one be modified or something like that?

  2. #2
    Join Date
    May 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    anyone?

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    This is the closest I could find here on DD:

    http://www.dynamicdrive.com/dynamici...nualscroll.htm
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  4. #4
    Join Date
    May 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks, but that won't work for what i want...it need to be able to stop when you move the mouse

    it can probably be edited to do what I want, but I'm not sure what I would need to edit

  5. #5
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Try changing this:
    Code:
    <div style="background-color:#FFFFDD;width:155px"><center><a href="javascript:movedown()">Down</a>  <a href="javascript:moveup()">Up</a> 
    <a href="javascript:stopscroll()">Stop</a>  <a href="javascript:movetop()">Top</a></center>
    </div>
    to this:
    Code:
    <div style="background-color:#FFFFDD;width:155px"><center><a href="#" onclick="return false;" onmouseover="movedown()" onmouseout="stopscroll()">Down</a>  <a href="#" onclick="return false;" onmouseover="moveup()" onmouseout="stopscroll()">Up</a> 
    <!--a href="javascript:movetop()">Top</a--></center>
    </div>
    You can even replace the words 'Up' and 'Down' with image tags that use images of your choosing, like little arrows, ex:
    Code:
    <div style="background-color:#FFFFDD;width:155px"><center><a href="#" onclick="return false;" onmouseover="movedown()" onmouseout="stopscroll()"><img src="down.gif"></a>  <a href="#" onclick="return false;" onmouseover="moveup()" onmouseout="stopscroll()"><img src="up.gif"></a> 
    <!--a href="javascript:movetop()">Top</a--></center>
    </div>
    I removed the 'Stop' command as it is no longer needed. I left the 'Top' command in there but, commented it out, it might come in handy if you have a very long list of things in the scroll.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  6. #6
    Join Date
    May 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thank you! that's exactly what I wanted
    Last edited by trebs; 06-07-2005 at 05:02 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •