• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

P3D v2 InputEvent example problem

Messages
12
Country
netherlands
Hello,

This is my first post here. I'm having trouble with the InputEvent example with the P3D SDK version 2.4.
The brake event is coming in ok when I press the decimal point on my keyboard, but when I press the defined keyboard combination ("shift+ctrl+u") nothing happens. I'm using VS2013 but have VS 2010 installed as well for the correct dll's. When I try this example with the FSX SDK and FSX it works ok. Could there be a problem with my simconnect installation. I tried a number of other examples and they work ok. Addons which use simconnect work ok. So I really don't know why it is not working.
I hope sombody can help me out.

Thanks,
Rob
 
Don't know if this is a bug or not but "brakes" don't work in this example. Change "brakes" to "zoom_out" and it will work.

Code:
        hr = SimConnect_MapClientEventToSimEvent(hSimConnect, EVENT_BRAKES, "zoom_out");
 
Back
Top