I have a XBL handler with the following signature:

<handler event="keypress" modifiers="control" keycode="DOM_VK_L">

As you see, it should be fired when the user press CTRL+L. But, for some reason, it fires when the user press CTRL+.

Why? And how to make it work exclusively for CTRL+L?

link|improve this question

feedback

1 Answer

There's no such attribute as keycode in current standard.
If you meant some implementation, which do not follow the standard, then you should mention it in question text.

And if you speak about Mozilla XBL1.0, then you need to use one from followings:

<handler event="keyup" modifiers="control" keycode="DOM_VK_L">
<handler event="keypress" modifiers="control" charcode="108">

108 is a ascii code for small L.

link|improve this answer
It's the Mozilla XBL, using keyup or charcode="108" it just doesn't fire the event. – Tom Brito Feb 10 '11 at 13:35
try keypress with charcode="DOM_VK_SEPARATOR"(developer.mozilla.org/En/DOM/Event/UIEvent/KeyEvent – kirilloid Feb 10 '11 at 13:47
Nothing, I tried ctrl+l ctrl+L ctrl+space and others, but there was no even fired. – Tom Brito Feb 10 '11 at 15:47
<handler event="keypress" key="l" modifiers="control" ... > developer.mozilla.org/samples/xultu/examples/… – kirilloid Feb 10 '11 at 19:05
something goes wrong when using a browser. But not in this sample. I need to do some tests here.. I'll back to post an update.. – Tom Brito Feb 22 '11 at 18:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.