Results 1 to 4 of 4

Thread: Scrolling Content II HELP!

  1. #1
    Join Date
    Jun 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Scrolling Content II HELP!

    I am integrating the Scrolling Content II script and I cant seem to get the script to STOP SCROLLING at the end of the content. Any help would be extremely appreciated!

    Code:
    http://www.a-n-n-s-a-n-d-r-a.com/temp/index.php
    I dont want it SE indexed. sorry! just delete dashes.

    Regards,
    MAK

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

    Your page is in violation of Dynamic Drive's usage terms, which, among other things, state that the credit notice inside the script must be visible in the source code of the page(s) using it. Please reinstate the notice first.


    To fix that, make this:

    Code:
    <script type="text/javascript" src="js/scrollPart1.js"></script>
    like so:

    Code:
    <script type="text/javascript" src="js/scrollPart1.js">
    /*
    * Scrollable content script II- © Dynamic Drive (www.dynamicdrive.com)
    * Visit http://www.dynamicdrive.com/ for full source code
    * This notice must stay intact for use
    */
    </script>
    I'm not sure why this is happening on your page but, if you change both instances of:

    Code:
    contentheight=crossobj.offsetHeight
    in scrollPart2.js to:

    Code:
    contentheight=parseInt(crossobj.style.height)
    That wil fix it.
    - John
    ________________________

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

  3. #3
    Join Date
    Jun 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Im not sure why you ask I keep the copyright, It IS in there! thanks for the solution, Will let you know if it works.

    -MAK

    Quote Originally Posted by jscheuer1
    Your page is in violation of Dynamic Drive's usage terms, which, among other things, state that the credit notice inside the script must be visible in the source code of the page(s) using it. Please reinstate the notice first.


    To fix that, make this:

    Code:
    <script type="text/javascript" src="js/scrollPart1.js"></script>
    like so:

    Code:
    <script type="text/javascript" src="js/scrollPart1.js">
    /*
    * Scrollable content script II- © Dynamic Drive (www.dynamicdrive.com)
    * Visit http://www.dynamicdrive.com/ for full source code
    * This notice must stay intact for use
    */
    </script>
    I'm not sure why this is happening on your page but, if you change both instances of:

    Code:
    contentheight=crossobj.offsetHeight
    in scrollPart2.js to:

    Code:
    contentheight=parseInt(crossobj.style.height)
    That wil fix it.

  4. #4
    Join Date
    Jun 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    oh. ok I get it. You want the notice in the html source. ok. done.

    -MAK

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
  •