Jump to content
The simFlight Network Forums

Message via FSUIPC to FSX


Recommended Posts

Hallo,

 

is it possible to send an message direct to the screen in FSX, like the airport information on top of the window? Example: For information when the taxi-speed is over 25 ktn groundspeed.

 

Yes via the message offsets. See the offset list.

 

Check 32FA for the control and 3380 for the text.

 

Pete

Link to comment
Share on other sites

  • 1 month later...

Dim msgcontrol As Offset(Of Short) = New FSUIPC.Offset(Of Short)("msg", &H32FA)
Dim msg As Offset(Of String) = New FSUIPC.Offset(Of String)("msg", &H3380, 128)

 

msg.Value = "Hello this is captain speaking"
msgcontrol.Value = 5
        Try
            FSUIPCConnection.Process("msg")
        Catch e As FSUIPCException

        End Try

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.