Make Browser Window Blink in Task Bar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:24:48Z http://stackoverflow.com/feeds/question/37122 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar 4 Make Browser Window Blink in Task Bar erik 2008-08-31T21:22:51Z 2008-10-02T02:26:07Z <p>How do I make a user's browser blink/flash/highlight in the task bar using JavaScript? For example, if I make an AJAX request every 10 seconds to see if the user has any new messages on the server, I want the user to know it right away, even if he is using another application at the time.</p> <p><em>Edit: These users do want to be distracted when a new message arrives.</em></p> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/37134#37134 0 Answer by rmbarnes for Make Browser Window Blink in Task Bar rmbarnes 2008-08-31T21:34:47Z 2008-08-31T21:34:47Z <p>The only way I can think of doing this is by doing something like alert('you have a new message') when the message is received. This will flash the taskbar if the window is minimized, but it will also open a dialog box, which you may not want.</p> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/37163#37163 0 Answer by andyuk for Make Browser Window Blink in Task Bar andyuk 2008-08-31T22:00:47Z 2008-08-31T22:00:47Z <p>Why not take the approach that GMail uses and show the number of messages in the page title?</p> <p>Sometimes users don't want to be distracted when a new message arrives.</p> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/37233#37233 1 Answer by Orion Edwards for Make Browser Window Blink in Task Bar Orion Edwards 2008-08-31T23:03:56Z 2008-08-31T23:03:56Z <blockquote> <p><i>These users do want to be distracted when a new message arrives.</i></p> </blockquote> <p>It sounds like you're writing an app for an internal company project. </p> <p>You might want to investigate writing a small windows app in .net which adds a notify icon and can then do fancy popups or balloon popups or whatever, when they get new messages.</p> <p>This isn't overly hard and I'm sure if you ask SO 'how do I show a tray icon' and 'how do I do pop up notifications' you'll get some great answers :-)</p> <p>For the record, I'm pretty sure that (other than using an alert/prompt dialog box) you can't flash the taskbar in JS, as this is heavily windows specific, and JS really doesn't work like that. You may be able to use some IE-specific windows activex controls, but then you inflict IE upon your poor users. Don't do that :-(</p> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/37283#37283 0 Answer by Toran Billups for Make Browser Window Blink in Task Bar Toran Billups 2008-09-01T00:02:59Z 2008-09-01T00:12:27Z <p>you could change the title of the web page with each new message to alert the user. I did this for a browser chat client and most users thought it worked well enough. </p> <pre><code>document.title = "[user] hello world"; </code></pre> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/156250#156250 2 Answer by Rudi for Make Browser Window Blink in Task Bar Rudi 2008-10-01T04:34:41Z 2008-10-01T04:34:41Z <p>My "user interface" response is: Are you sure <em>your users</em> want their browsers flashing, or do <em>you think</em> that's what they want? If I were the one using your software, I know I'd be annoyed if these alerts happened very often and got in my way.</p> <p>If you're sure you want to do it this way, use a javascript alert box. That's what Google Calendar does for event reminders, and they probably put some thought into it.</p> <p>A web page really isn't the best medium for need-to-know alerts. If you're designing something along the lines of "ZOMG, the servers are down!" alerts, automated e-mails or SMS messages to the right people might do the trick.</p> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/156272#156272 0 Answer by Sugendran for Make Browser Window Blink in Task Bar Sugendran 2008-10-01T04:47:39Z 2008-10-01T04:47:39Z <p>You may want to try window.focus() - but it may be annoying if the screen switches around</p> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/156274#156274 6 Answer by nickf for Make Browser Window Blink in Task Bar nickf 2008-10-01T04:48:18Z 2008-10-01T04:56:34Z <p>this won't make the taskbar button flash in changing colours, but the title will blink on and off until they move the mouse. This should work cross platform, and even if they just have it in a different tab.</p> <pre><code>function newExcitingAlerts() { var oldTitle = document.title; var msg = "New!"; var timeoutId = setInterval(function() { document.title = document.title == msg ? ' ' : msg; }, 1000); window.onmousemove = function() { clearInterval(timeoutId); document.title = oldTitle; window.onmousemove = null; }; } </code></pre> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/156316#156316 4 Answer by Joeri Sebrechts for Make Browser Window Blink in Task Bar Joeri Sebrechts 2008-10-01T05:14:58Z 2008-10-01T05:14:58Z <p>Supposedly you can do this on windows with the growl for windows javascript API:</p> <p><a href="http://ajaxian.com/archives/growls-for-windows-and-a-web-notification-api" rel="nofollow">http://ajaxian.com/archives/growls-for-windows-and-a-web-notification-api</a></p> <p>Your users will have to install growl though.</p> <p>Eventually this is going to be part of google gears, in the form of the NotificationAPI:</p> <p><a href="http://code.google.com/p/gears/wiki/NotificationAPI" rel="nofollow">http://code.google.com/p/gears/wiki/NotificationAPI</a></p> <p>So I would recommend using the growl approach for now, falling back to window title updates if possible, and already engineering in attempts to use the Gears Notification API, for when it eventually becomes available.</p> http://stackoverflow.com/questions/37122/make-browser-window-blink-in-task-bar/160617#160617 0 Answer by Chase Seibert for Make Browser Window Blink in Task Bar Chase Seibert 2008-10-02T02:26:07Z 2008-10-02T02:26:07Z <p>AFAIK, there is no good way to do this with consistency. I was writing an IE only web-based IM client. We ended up using window.focus(), which works most of the time. Sometimes it will actually cause the window to steal focus from the foreground app, which can be really annoying.</p>