#Turn off 7-Segment Displays in 737 MCP

1 messages · Page 1 of 1 (latest)

next mirage
#

Vertical speed and ias/mach display indicators do not turn off on my device when they are off in the simulator. How can I fix it?

viral roost
#

Turn off 7-Segment Displays in 737 MCP

#

The special values of -1 and -20000 can serve as triggers to turn off the displays with a Transform.

next mirage
#

This isn't descriptive enough for me. I understand what to do but I don't know how to do it.

viral roost
#

you want to write blanks to the displays whenever the ias/mach value is -1

#

and you want to write blanks to the display whenever the VS is -20000

#

that can be done with a Transform

#

or with a Comparison

#

Transform for IAS
if($=-1,' ',$)

#

this is using the second method mentioned in the pinned thread.

next mirage
#

Ok, I understand now. Thank you very much.

bold crest
#

@next mirageis this resolved?

next mirage
#

Yes, Resolved.