• 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.

2 Key Events / additional data

Messages
78
Country
unitedstates
I've been trying to do two things with a gauge and so far haven't found where the items go or, how to arrange them properly. If anyone could lend a hand, I'd appreciate it.

Okay first, I'm using FSX. One thing I'm trying to do is make a mouse click area to open the cargo door / second exit. I got exit 1 to open but, the second one requires a second event: SELECT_2 to follow. I've been looking for examples to model but haven't found any yet.

Next, I'm working with the pushback tug and want to play with the TUG_HEADING and TUG_SPEED events but, where exactly do I put the values to alter them?

Specifically, I'm setting up "buttons" (mouseclicks) to handle preset pushback angles and also a start/stop function (So the tug will stop motion, announce "set parking brake" and then disengage rather than simply disconnecting and backing off right away).

Thanks!
 
Code:
<Click>(&gt;K:TOGGLE_AIRCRAFT_EXIT) (&gt;K:SELECT_1)</Click>

<Click>(&gt;K:TOGGLE_AIRCRAFT_EXIT) (&gt;K:SELECT_2)</Click>

<Click>(&gt;K:TOGGLE_AIRCRAFT_EXIT) (&gt;K:SELECT_3)</Click>

<Click>(&gt;K:TOGGLE_AIRCRAFT_EXIT) (&gt;K:SELECT_4)</Click>
 
Thanks Bill! I'll give it a whirl. Also, I believe I found the proper format for setting values - it was right in the SDK for making gauges! Don't know how I missed it. :rolleyes:
 
Back
Top