- Messages
- 10,085
- Country
-
Hey all,
I have a timer window (Message Center) in a PFD screen. Works excellent. Appears for the amount of time I need.
I want to have the window popup when events happen, like 'gear up and locked', or flaps percent 1 > etc.
I setup my flags in the Update section, link them to trigger my Message Center switch...
and.....................
nothing... Nothing happens.
What might I be doing wrong?
This is what I have;
The above works fine. The trigger is L:MESSAGE CENTER Switch,bool
This below is the update center section for this system;
There are other parts in the Update that do not relate to this, so I left those out for simplicity.
The Message Center Switch should trigger, right? What might I be doing wrong?
What happens is the switch on the screen locks up, the screen (message popup window) doesnt show up when events happen, nor can I bring it up with the Update section having these active.
Do I need a secondary switch in the mix?
I have a timer window (Message Center) in a PFD screen. Works excellent. Appears for the amount of time I need.
I want to have the window popup when events happen, like 'gear up and locked', or flaps percent 1 > etc.
I setup my flags in the Update section, link them to trigger my Message Center switch...
and.....................
nothing... Nothing happens.
What might I be doing wrong?
This is what I have;
Code:
<!-- Start timer and increment when both battery and avionics are ON -->
<Element>
<Select>
<Value>
(L:MESSAGE CENTER Switch,bool) 1 == (L:3303MESSAGE CENTER Time,enum) 250 <= and
if{ (L:3303MESSAGE CENTER Time,enum) ++ (>L:3303MESSAGE CENTER Time,enum) 1 (>L:3303MESSAGE CENTER Screen,enum)
4 (>L:TIER2 CLICK LAYER,enum) }
</Value>
</Select>
</Element>
The above works fine. The trigger is L:MESSAGE CENTER Switch,bool
This below is the update center section for this system;
Code:
<Update>
(A:GEAR RIGHT POSITION, percent) 100 ==
if{ 4 (>L:MESSAGE CENTER Switch,bool) }
(A:GEAR RIGHT POSITION, percent) 0 ==
if{ 4 (>L:MESSAGE CENTER Switch,bool) }
(A:SPOILERS LEFT POSITION, percent) 100 ==
if{ 4 (>L:MESSAGE CENTER Switch,bool) }
(A:FLAPS HANDLE PERCENT,percent) 1 >
if{ 4 (>L:MESSAGE CENTER Switch,bool) }
</Update>
There are other parts in the Update that do not relate to this, so I left those out for simplicity.
The Message Center Switch should trigger, right? What might I be doing wrong?
What happens is the switch on the screen locks up, the screen (message popup window) doesnt show up when events happen, nor can I bring it up with the Update section having these active.
Do I need a secondary switch in the mix?