QUOTE(hentai_fusion @ Sep 15 2013, 13:31)
unbinding a default key so that i can use it for something else does not work...
Actually, I don't even know what is the new changes in chrome & ff. (IMG:[
invalid]
style_emoticons/default/rolleyes.gif)
But it seems they disallow you to call in userscript those on* function.
So it has to use abc.click(), which was abc.onclick()
This also breaks the way that this script is designed a long time ago.
First it temporarily disable the document.onkeydown function.
Then performing the user-defined binding actions.
If nothing happen, send the event back to the saved document.onkeydown function.
The problem now is, as with the case of onclick and click, you cannot directly disable document.onkeydown.
One remedy is to make the eventListener capturing and stopping propagation to other listeners.
But this probably will not help you too. (You can try the script below though.)
Any advice or workaround is welcomed. (IMG:[
invalid]
style_emoticons/default/biggrin.gif)
QUOTE(rmr @ Sep 16 2013, 20:16)
It is unable to cover the hotkeys S, D , and G with HV Keybind 2.4.2.
[
pastie.org]
Use this one (Changed KEY_UP issue, and toogle is now correctly spelled as toggle (IMG:[
invalid]
style_emoticons/default/tongue.gif) )
This one will let you bind SDFG. But it may interfere with other scripts.