up vote 7 down vote favorite
1
share [g+] share [fb]

Performing a search, I noticed several questions dedicated to how to steal/trap the keyboard focus of the visitor. Considering this site is dedicated to programming that's not suprising. I was wondering if anyone can advise me on how to prevent this type of behavior. Losing keyboard focus to flash basically removes my browser's functionality until I use the mouse to click elsewhere (I use Mozilla Firefox). Anyone know of some kind of plugin or greasemonkey script that will prevent my keyboard focus from being stolen? Normal browser "shortcuts" are rendered useless by having to use the mouse to return keyboard focus to the browser.

Edit: Reply to the post below, I do have flashblock / noscript and some other things. My issue is flash that I want to see/interact with stealing my focus. Basically looking for something I can toggle that will prevent flash from getting keyboard focus or a way to force my firefox keyboard commands to the browser

link|improve this question
2  
HELP! Mee Too! Drives me batty as I am heavily keyboard driven. – stu Sep 1 '09 at 11:17
The OP is not looking to program something, they are looking for a plugin. This belongs on superuser. – Justin Johnson May 24 '10 at 1:20
feedback

closed as off topic by Will Aug 31 '11 at 16:41

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

protected by Bo Persson Aug 31 '11 at 19:51

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

10 Answers

Unfortunately, it is almost a decade old well known FF bug (and now in Chrome too), which is not present in IE. All the Ctrl+T, Ctrl+Tab, Ctrl+W etc. keys just stop working when the focus is on a flash object.

The worse thing is, no one seems to know the fix for it yet (see the thread above). Some IBM people made a hack fix for Linux, but there is none for Windows. It is really really annoying.

link|improve this answer
feedback

Similar question: http://stackoverflow.com/questions/254111/flash-steals-browser-focus

The (not accepted but looks promising) answer of:

 document.body.focus();

may work for you. That can easily be greasemonkeyed. Probably.

link|improve this answer
feedback

On Mac OSX 10.6 using Firefox 4, if the plugin (flash) has focus and your tabbing does not work by using Cmd+1, or Cmd+T for a new tab, etc..

Use Cmd+L first to give the browser address bar focus, and then do Cmd+1, etc...

link|improve this answer
feedback

I think it is not possible that flash gets the keyboard focus automatically in firefox. It is possible with the IE.

link|improve this answer
feedback

First, check to make sure you are using a flash player higher than version 6.0. Also, another responder was correct. FireFox should not automatically take focus of inline flash content...it isn't designed that way.

Secondly, This is not just an annoyance, this is an accessibility concern. Those users who can only navigate with a keyboard or assistive device like a screen reader will not be able to escape...because they don't/cant't use a mouse.

To avoid flash in keyboard navigation, or to hide unimportant Flash content from both web browser and screen readers, add the wmode option with a value of opaque to both the object and embed tags of the web page containing the Flash movie or swf.

Example of code:

<object ...>
<param name="wmode" value="opaque">
<embed wmode="opaque" ...>
</embed>
</object>

This will effectively hide the Flash movie from the screen reader/assistive device and the keyboard. It will still appear visibly within the page, but while navigating through the page, the keyboard will bypass the Flash content and the screen reader will act as if it isn't even there.

HOWEVER!!!! If the movie/swf DOES contain important information, either display the Flash movie in a page by itself or include the link to download the latest version of the Flash player and inform users that they need to use this version. -- Of course, you should then make your flash piece keyboard navigable.

DOWNFALL OF FLASH: Natively keyboard navigable flash is ONLY -- I repeat ONLY available in Internet Explorer...BECAUSE Adobe/Macromedia designed "Accessible Flash" to work with MSAA (Microsoft Active Accessibility) technology and the only browser that supports MSAA technology is Internet Explorer.

link|improve this answer
feedback

It's not FLASH - it's the Javascript that brings the focus. FLASH always needs a click to be activated. More info look out for SWFObject

link|improve this answer
feedback

This bothers me, too. It's not only a problem with Flash taking focus automatically. I could be viewing a youtube video or something, then Alt+Tab to something else. When I Alt+Tab back to my browser (Opera), I want to Ctrl+Tab to another page, or Ctrl+T to a new page, but Flash still has focus and it doesn't work.

link|improve this answer
feedback

There seems to be no ctrl or alt combination that would release the focus. The only ones working are that of operation system's. It does not help you to go to another window, the focus still stays, and no, you can not change tab, close it or do anything else either you normally would with keyboard.

I was using my computer without a mouse for a while and this was the first actual problem I had (in addition to missing drag'n'drop features for some sites and facing unreachable button like icons). So those of you who face the same dilemma and don't wish to close the Firefox altogether, you can still use alt to focus on toolbar of the application (at least in Windows). However, there is no option for closing the tab but you can select any other site from History (e.g. your home page which comes first with h letter) and then finally close the tab.

So (at least in Windows using FF5) e.g. in English version of Firefox you could type: alt s h and then go back using alt+left (or close the tab with ctrl+w or ctrl+f4).

link|improve this answer
feedback

If you're using Firefox, you can try Flashblock to disable unwanted Flash.

link|improve this answer
It's not that we don't want to use the flash program, but that we want to be able to take focus away from it without using the mouse. – stu Sep 1 '09 at 11:18
feedback

Alt-Tabbing to your current app will return focus.

link|improve this answer
feedback