views:

93

answers:

1

I'm looking for a way to embed youtube/flash video to html page that will work in firefox using only keyboard support.

The problem is that in FF you can't set the focus in/out of the player using your keyboard. You must use the mouse (Not Accessible).

Any idea? Thanks

+1  A: 

Have a look at two different approaches:

(1) Provide DHTML controls for the player, and just use Flash to render the video itself (I recommend this approach). See for example:

http://icant.co.uk/easy-youtube/

(2) Use JS to try and fix Flash focus issues:

http://blogs.adobe.com/accessibility/2009/04/firefox%5Ffocus%5Fand%5Factual%5Flinks%5F1.html

I don't know if the Google Flash component exposes the required API hooks for that.

Benjamin Hawkes-Lewis