-
Notifications
You must be signed in to change notification settings - Fork 2
Add support for backtick as inventory key #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
For ` key, virtual keycode is 0xc0 or VKC0 I've added necessary changes, so it will use virtual key. Let me know, maybe vkdf is better or I missed something |
|
Hi! Your change doesn't work. You put the virtual keycode for ', not `. VKDF is the virtual key for backtick. |
|
send me content of test.ahk |
|
I'm investigating this further. Found some resource https://kbdlayout.info/features/virtualkeys/VK_OEM_8 |
|
check if scancode is working for you |
|
Yes, SC029 works fine! |
|
Is it possible to translate all keys into Scan Codes when saving them? I sent you a message on Discord, showing an additional problem with special characters, such as § causing the app to crash when it tries to read the .ini file. EDIT: I don't know if saving Scan Codes ia good idea, it was just a suggestion. The problem is § causes an app crash, and perhaps other special characters. |
|
Find image of keyboard and circle what the key is § |
|
Did my last comment make sense? :) |
|
I don't get what key you want to bind, most keyboards ` or ~ key is 0xC0 aka VKC0. if your key ` and § is same real key, you can't bind it using virtual or scan key. You need to bind it as it is. So you can change language and it will perfrom other actions |
|
Using scancode simply won't work. Because in your GUI, you have the ` key. You can't use Scancode for that, because you're rebinding the physical key. Which means that it will rebind anything that's on that key, independent of your language. I don't know why your AHK reports ` as being VKC0. Perhaps your AHK is outdated? It looks like you're running an old version. EDIT: To be clear. Using SC029 will work for MY language, because ` is on that physical key, but what if you're using a language where ` is on another key? That won't work :) |
|
In the readme there's link to what ahk version I use. Yes, that's old v1 ahk. Used it 12 years ago and on windows it works fine. Also compiled version is smaller than new one. |







No description provided.