You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers. No questions about C++ programming or topics which are answered in the tutorials!
I've seen a few posts about this and tried to implement them but none of them seem to allow my eventreciever to catch when F10 is pressed. Seen this post but wasn't sure where in the file to add the code http://irrlicht.sourceforge.net/phpBB2/ ... hlight=f10
I just want to be able to tell when F10 is Pressed!
Using irrlicht 1.3.1
Windows Vista
Definition of an Upgrade: Take old bugs out, put new ones in.
What you'd need to do to get it to work like you'd expect would be to add support for WM_SYSKEYUP and WM_SYSKEYDOWN messages. That will also get the left and right ALT keys to work as expected. Unfortunately if you fix this, ALT+F4 stops working because Irrlicht will intercept all keyboard input before the default window handler gets a chance. Of course you can overcome that by providing your own way for the program to exit.
Absolutely. The only thing I'm saying is that you have to handle the message yourself where Irrlicht used to do it for you. If you have a program that uses the FPS camera and run it using a 'fixed' Irrlicht.dll, you'll have a hard time getting out of the program. You'll probably end up getting the task manager and killing it that way.