Is it possible to change Key Language? Topic is solved

Get help with using AutoHotkey (v2 or newer) and its commands and hotkeys
GamesOfFreak
Posts: 28
Joined: 15 Sep 2020, 03:51
Location: Germany
Contact:

Is it possible to change Key Language?

Post by GamesOfFreak » 01 Apr 2024, 11:45

Hey,

I need to write a simple script that allows me to write "`" but in th en-us keyboard layout.

I have a Mod for Monster Train that allows me to have console commands.

But for some odd reasons it doesn't detect the "`" from the German Keyboard that I use by default only the en-us Keyboard Language.

So I need to somehow imitate a Great Britain Kezboard.

User avatar
mikeyww
Posts: 27372
Joined: 09 Sep 2014, 18:38

Re: Is it possible to change Key Language?  Topic is solved

Post by mikeyww » 01 Apr 2024, 12:20

Hello,

Some posted scripts will indeed change the language, so you could use any of them.

I suppose that text mode would not work here, though you could try it. Another thing to try could be a scan code.

Code: Select all

#Requires AutoHotkey v2.0

F3:: {
 SetKeyDelay , 25
 SendEvent '{SC029}'
}
viewtopic.php?p=500575#p500575

viewtopic.php?p=509733#p509733

viewtopic.php?p=527247#p527247

GamesOfFreak
Posts: 28
Joined: 15 Sep 2020, 03:51
Location: Germany
Contact:

Re: Is it possible to change Key Language?

Post by GamesOfFreak » 01 Apr 2024, 12:55

Well,

I found out that the Key "Ö" is equivalent to the Key "`" of the EN Keyboard. I found it randomly.

Post Reply

Return to “Ask for Help (v2)”