Hey folks,
Its not that I am not willing to try learning how to programme this stuff but I think its a bit too much work compared to the query.
I have the Apple Wireless alu-keyboard (danish) and I've installed UAWK. The problem is that when using the right Alt the keyboard for some reason afterwards holds CTRL. An example would be making \ which is a combination of right Alt and ½§-key. Pressing the right Alt and the ½§-key gives the \ but then the next key pressed will be in combination with CTRL (for some reason). So when finishing an ALT-combination the CTRL is pressed waiting for the next input. To make it clear the following pressed combination ALT + §½ E would be executed as ALT + §½ CTRL + E
This can of course be avoided by pressing the CTRL after the key-combination to send the up-signal to tell the program that the CTRL has been released but it is very annoying in the long run.
I know the author is aware of this issue (look at this reported issue track
http://code.google.com/p/uawks/issues/detail?id=2) but he doesnt seem to care.
And by looking into his code it also seems like he knows about it (i know very little of the syntax but I think I got the right part):
System Keys.ahk:
Code:
; Trying to fix problems with AltGr, mostly on european layouts
RAltFnKeyEnable() {
Hotkey, $*RAlt, RAltFnKeyDown, On UseErrorLevel
Hotkey, $*RAlt Up, RAltFnKeyUp, On UseErrorLevel
}
So my question is: can comebody fix this? As mentioned I think its overkill starting to learn AutoHotKeys just to fix this issue.
Thanks,