[20 Jul 2006] Special Keys for input
Posted: Sat Jun 13, 2020 5:31 pm
Note: This is an archived post that was originally sent to the Hollywood mailing list on Thu, 20 Jul 2006 17:52:01 +0200
Hello, I am currently trying to get a configurable InputSystem for a free choice of what key represents what action.
I know that e.g. the arrow-keys represented by "LEFT", "RIGHT" and so on. This works great as single letters as "a", "b"... do too. But others like "TAB", "SHIFT" fail miserably.
To check the pressed key I use InstallEventHandler({ OnKeyDown = p_UserFunction})
Within that function I filter for msg.key and compare it to some variables to check what the user wants to do.
Why aren't keys like TAB and SHIFT working?
Hello, I am currently trying to get a configurable InputSystem for a free choice of what key represents what action.
I know that e.g. the arrow-keys represented by "LEFT", "RIGHT" and so on. This works great as single letters as "a", "b"... do too. But others like "TAB", "SHIFT" fail miserably.
To check the pressed key I use InstallEventHandler({ OnKeyDown = p_UserFunction})
Within that function I filter for msg.key and compare it to some variables to check what the user wants to do.
Why aren't keys like TAB and SHIFT working?