tags:

views:

220

answers:

2

Is it possible to use arrow keys as access keys, as in Ctrl+Alt+rightArrowKey for a key combination?

A: 

will not work with html access keys, you must use Javascript.

Burntime
A: 

Says here that you have to specify a character as access key, and although you could try using arrow ASCII codes in Unicode format as access key characters, I doubt that it's going to work. Better to use JavaScript.

littlegreen