Forum Discussion

kkarhi's avatar
kkarhi
Copper Contributor
Jun 22, 2024
Solved

United States-International Keyboard

Hi, I just moved from Windows 10 to 11.  In W10 I used the US-International keyboard to enter characters like "a umlaut".  It was easy to do by typing a " character and then the character itself.  T...
  • kkarhi's avatar
    Jun 25, 2024
    Well, since nobody replied I went ahead and found a third party solution. I use the AutoHotKey app to map the WIN-a to "a umlaut" and WIN-o to "o umlaut". That is enough for me. Here is the file I created to make the mapping:
    #a::
    Send, {LAlt Down}{Numpad1}{Numpad3}{Numpad2}{LAlt Up}
    Return

    #o::
    Send, {LAlt Down}{Numpad1}{Numpad4}{Numpad8}{LAlt Up}
    Return

    #+a::
    Send, {LAlt Down}{Numpad0}{Numpad1}{Numpad9}{Numpad6}{LAlt Up}
    Return

    #+o::
    Send, {LAlt Down}{Numpad0}{Numpad2}{Numpad1}{Numpad4}{LAlt Up}
    Return

Resources