-
-
Notifications
You must be signed in to change notification settings - Fork 251
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
Issue regarding Arrow Keys #174
Comments
I have a (potentially) similar issue with the Delete, Home, Page Up, Page Down, and arrow keys. I say potentially cus I'm using a 65% keyboard and I can't tell if OBS is failing to detect the press or they are being registered as something else like in your case. Oh and all of these are correctly being registered in io-cct. |
It's any of the scan codes that are a two byte sequence. Arrow keys, Insert, Home, Page Up/Down etc. are all prefixed with The io-cct tool generates the decimal equivalent of Edit: solved by using |
I changed 0xE0nn to 0xEEnn through io-cct but it didn't work, then i tried 0xEE0nn and still didn't work, did i misinterpretate your solution? |
I had problems with changing it through io-cct too (i couldn't get rid of the 0 after the x), so I changed the decimal numbers in the json file directly with a Notepad. |
Ok that worked for the arrow keys but what would be the decimals of Delete, Home, Page Up, Page Down? |
No idea, we would need to figure out the right numbers for those somehow... |
Insert = 61010 Some things I never found a solution for, such as `, ', #, and \ all give the wrong scan codes on my keyboard layout, which I understand is an issue with the underlying libuihook library. |
Those work. Thank you so much. <3 |
Having the same issue for the arrow keys and the solution above unfornately do not work. I'm currently on Linux Manjaro 21.0. |
didnt quite work, sittin here on ubuntu and i have no idea how to figure out what the keys are |
update: i have checked nearly every place i can think on both this project and libuio and tried every key and still no luck |
I also can't get the arrow keys to work, would really like to move to v5.0 already but this is preventing me from doing so |
Ubuntu 20.04.3 LTS, neither 0xE04D nor 0xEE4D work for RightArrow, but 0xEE4D does correspond to NumRightArrow. |
I also could not get the arrow keys to work. OBS 27.1.3 (64 bit). |
The right arrow being 0 is a bug with libuihook. I think it's already been fixed, but I'll have to make a new build with the new library version first. |
See #298 for further tracking |
Arrow keys, when assigned in the io-cct tool work properly, but once imported as a .JSON file into OBS incorrectly read as the NUMPAD arrow keys rather than the regular arrow keys.
To Reproduce
Steps to reproduce the behavior:
using a pre-existing overlay, attempt to assign anything to any of the arrow keys by having it read the arrow keys as inputs. test to verify it works in io-cct, then import into OBS Studio
Expected behavior
buttons to function when regular arrow keys are pressed.
Additional information:
The text was updated successfully, but these errors were encountered: