- Messages
- 10,158
- Country

Hey guys,
I think I am missing a condition here. I have a font warning in a guage Element I am trying to get to come on.
The font says 'Flaps Up' in green when the flaps are up. When Flaps are lowered/retracted, then the Flaps Down warning should come up in red font. However it doesnt.
I have tried some variations on the 'Flaps Down' code, trying to trigger it. Nothing seems to work.
Here is the code so far. Flaps UP works fine. I need to say to the system 'when flaps are 1% or more down, that switch is on for Flaps Down Text.
Thanks for any ideas or input on this,
Bill
LHC
I think I am missing a condition here. I have a font warning in a guage Element I am trying to get to come on.
The font says 'Flaps Up' in green when the flaps are up. When Flaps are lowered/retracted, then the Flaps Down warning should come up in red font. However it doesnt.
I have tried some variations on the 'Flaps Down' code, trying to trigger it. Nothing seems to work.
Here is the code so far. Flaps UP works fine. I need to say to the system 'when flaps are 1% or more down, that switch is on for Flaps Down Text.
Code:
<Element Name="FLAPS DOWN MESSAGE">
<Position X="65" Y="100"/>
<Text X="135" Y="20" Bright="Yes" Length="120" Font="Arial Bold" FontSize="18" Color="Red" Adjust="Left" VerticalAdjust="Bottom" Multiline="No">
<String>%((A:FLAPS HANDLE PERCENT ,percent) near 1+ ==)%{if}FLAPS DOWN%{end}%</String>
</Text>
</Element>
<Element Name="FLAPS UP MESSAGE">
<Position X="65" Y="100"/>
<Text X="135" Y="20" Bright="Yes" Length="120" Font="Arial Bold" FontSize="18" Color="Green" Adjust="Left" VerticalAdjust="Bottom" Multiline="No">
<String>%((A:FLAPS HANDLE PERCENT,percent) near 0 ==)%{if}FLAPS UP%{end}%</String>
</Text>
</Element>
Thanks for any ideas or input on this,
Bill
LHC


