There is the US international keyboard layout, but I use ";" and the like more often than Umlauts, so no.
AutoHotKey lets you map keys. I wanted WinKey+a (or AoOuUs) to create ä (or ÄöÖüÜß). I also wanted the same in combination with the right Alt key, to see which would be more comfortable for me. The following code did it. It is based on this and was improved with the help of #autohotkey.
; # is the Win key #a:: Send {ASC 0228} #o:: Send {ASC 0246} #u:: Send {ASC 0252} #s:: Send {ASC 0223} ; + is Shift #+a:: Send {ASC 0196} #+o:: Send {ASC 0214} #+u:: Send {ASC 0220} ; >! is the right Alt key >!a:: Send {ASC 0228} >!o:: Send {ASC 0246} >!u:: Send {ASC 0252} >!s:: Send {ASC 0223} >!+a:: Send {ASC 0196} >!+o:: Send {ASC 0214} >!+u:: Send {ASC 0220}
Look what AHK can do for you!!!
No comments:
Post a Comment