lilienthal63 Posted January 29, 2015 Report Posted January 29, 2015 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. Thanks for any answer, Hermann
Pete Dowson Posted January 29, 2015 Report Posted January 29, 2015 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
vgmarimon Posted March 12, 2015 Report Posted March 12, 2015 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now