Results 1 to 3 of 3

Thread: changing timing in scroller

  1. #1
    Join Date
    Feb 2007
    Posts
    28
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default changing timing in scroller

    1) Script Title:
    IFRAME scroller
    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...e-scroller.htm
    3) Describe problem:
    can I change the timing for the script to make it by date so every day will show one Item, for a month?

  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 Seven Pages for Seven Sisters

    The script that you link to in your post has no such timing mechanism to begin with. Perhaps you are thinking of the daily iframe?

    Anywys, to alter this scroller script for monthly content though, you could just changes this:

    Code:
    var iframesrc="external.htm"
    Code:
    var scd=new Date();
    var iframesrc="external"+scd.getMonth()+".htm"
    Then you would need 12 external pages numbered 0 to 11:

    external0.htm
    external1.htm
    . . .
    external10.htm
    external11.htm

    0 is for January, 1 for Feb. and so on, 11 is Dec.

    For daily content use:

    Code:
    var scd=new Date();
    var iframesrc="external"+scd.getDate()+".htm"
    You would then need 31 pages numbered from 1 through 31.

    If you just want 7 pages, Sun. through Mon., use:

    Code:
    var scd=new Date();
    var iframesrc="external"+scd.getDay()+".htm"
    The seven pages would be numbered 0 (Sunday) through 6 (Monday).
    - John
    ________________________

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

  3. #3
    Join Date
    Feb 2007
    Posts
    28
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Thanks

    I will test and inform you, Thanks a lot

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
  •