Re: Checking SHIFT/CTRL/ALT hold in C++ xpcom
YuLo <[email protected]> Sat, 19 Oct 2013 12:06:18 -0700 (PDT)
| Newsgroups | gmane.comp.mozilla.devel.xpfe |
|---|---|
| Message-ID | <[email protected]> |
BTW,
<key key="C" modifiers="control alt" oncommand="alert('alt');"/>
not work. event.altKey not help.
But
<key key="C" modifiers="control shift" oncommand="alert('shift');"/>
works.
<key key="C" modifiers="alt shift" oncommand="alert('alt-shift');"/>
works too.