Results 1 to 3 of 3

Thread: Sticky Note Script

  1. #1
    Join Date
    Aug 2006
    Posts
    27
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Sticky Note Script

    1) Script Title: Sticky Note

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...stickynote.htm

    3) Describe problem: It's not so much a PROBLEM, but I'm wondering if there's a way for me to customize WHEN the window pops up. Right now it pops up instantly but I would prefer that there was a 5-10 second gap between the time that the visitor lands on the page and when the window appears.

    Any help?

    Thanks a lot guys.

  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

    It already does that but, it isn't documented. Find this part in the script:

    Code:
    function initfunction(){
    setTimeout("displayfadeinbox()", 100)
    }
    This sets a delay of 100 milliseconds, hardly noticeable. If you want more - say, 6 seconds change it to:

    Code:
    function initfunction(){
    setTimeout("displayfadeinbox()", 6000)
    }
    - John
    ________________________

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

  3. #3
    Join Date
    Aug 2006
    Posts
    27
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Excellent! Thanks so much.

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
  •