Results 1 to 8 of 8

Thread: Is this possible?

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

    Default Is this possible?

    Hi,

    I was just wondering if there is a javascript for status bar scrolling text?


    Thanks,

    Henry

  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

    Yes, there is (actually are several) but many browsers can be set to not allow it as it interferes with the normal user interface. Also, it is obnoxious in my, and I would venture, most folk's opinions.
    - John
    ________________________

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

  3. #3
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by jscheuer1
    Also, it [scrolling status bar text] is obnoxious in my, and I would venture, most folk's opinions.
    I'd certainly agree with you. Scrolling text, in any form, is a bad idea on the Web. The developer is afforded an almost limitless amount of vertical space. This isn't Times Square. I shouldn't need to wait for some text to cycle around in order to read it.

    As John also mentioned, the status bar is a user interface feature - it's not a toy. Leave it alone.

    Mike

  4. #4
    Join Date
    Mar 2006
    Location
    So California
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi everybody,

    My first post at this forum!

    Can the status bar be make to show the normal text plus your own added, no-blinking, message?

    Thanks.

  5. #5
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    No, it can't, as you can't intercept the text the browser would normally send to it.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

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

    Quote Originally Posted by Twey
    No, it can't, as you can't intercept the text the browser would normally send to it.
    True, but you can guess what might be the normal status bar message, co-opt it in some fashion and add to it, ex:

    Code:
    <a href="../index.html" onmouseover="status=this.href+' - Return to Home';return true;" onmouseout="status=' ';">Home</a>
    - John
    ________________________

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

  7. #7
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Which code demonstrates its own failings; my status bar, for a start, says "Done" when it doesn't have anything more purposeful to do.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

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

    Quote Originally Posted by Twey
    Which code demonstrates its own failings; my status bar, for a start, says "Done" when it doesn't have anything more purposeful to do.
    Well, without a 'return true;' on the mouseout event, it probably still will. Even if it doesn't, being blank isn't such a bad thing, it will show the next thing when the time comes anyway. Mine is not a 'solution' exactly though. Status bar and/or status bar manipulation may be turned off. But, if so, the user knows it and will still see the default for his/her browser/browser settings.
    - John
    ________________________

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

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
  •