Gen Ties Man Open/Closed
-
They probably are working, but you're not seeing the switch move in the cockpit. I've already fixed this for the next version. The next two are also in the manual:
L:var_BatteryAmpsMode_IsDown
, andL:var_MultimeterMode
(0-5). Let me know if you have any others that aren't in the manual. It's always very easy for me to find them in the code for you. -
An alternative to the native
K:TOGGLE_PROPELLER_SYNC
event? Is that working for you for some reason? -
Yes it is working, but I would like a 2 position switch consistant with other switches.
Push forward = on, pull back = off.Also, how is the prop overspeed test to be held forward and back? I can get the switch to move but it immediately springs back to off. Adding repeat to the event rapidly cycles the switch.
-
Yes it is working, but I would like a 2 position switch consistant with other switches.
Push forward = on, pull back = off.Also, how is the prop overspeed test to be held forward and back? I can get the switch to move but it immediately springs back to off. Adding repeat to the event rapidly cycles the switch.
@TreeTops If you want to use the toggle event as on/off in AAO, you can do a simple script like this:
(L:Starship-PropSync) (A:PROP SYNC ACTIVE, number) != if{ 1 (>K:TOGGLE_PROPELLER_SYNC) }
Replace the initial
(L:Starship-PropSync)
with "Insert Script Var" button in the scripts editor, based on how you name your script.
And then you can bind this script to buttons, passing values 1 and 0 for prop sync on and off. -
Was thinking about the second question, how to use a momentary switch, like the prop gov test, with LVARs, but didn't find a plausible easy solution. If you make your binding repeating, the switch will flap on/off, and the variables used for the spring timing are O-vars, which to the best of my knowledge can't be set externally.
I could try find some hack, but maybe Nick has a better idea? -
Thanks @Randolf . I managed to get the prop sync working.
I am new to AAO and scripting in general.I now have the whole pedestal forward of the throttles mapped with the following exceptions.
- Prop overspeed test holds.
- Batt Amp/L Load%. I have all the volts buttons working.
- Gen Ties Open/Closed - (I had to use L:var_busTieManOpen, 0/1. L:var_busTieManClose, 1 didn't respond).
- Avionics Alt Blower. (switch doesn't move and momentary event showing in the tablet, both off and on.
-
- I'm still thinking of a good solution. My apologies.
- Sorry, it's
L:var_BatteryAmpsMode
, but the button doesn't move. There are actually a lot of these I can fix, but it will have to wait for the next update after Flight Sim Expo. - I believe it is working, but the switch doesn't move. This will be fixed very soon.
L:var_AvionicsAlternateBlowerSwitch
works perfectly for me.
-
Master Warning and Master Caution buttons.
I can push and hold and then release to make the Caution button push in and then release.
The Master button will push in but won't release. Another push and it will release. It seems there are different actions here?How to clear the Master and Caution buttons?
-
I did the same thing just now with the blower events, haha.
There should be no difference between the master caution and master warning. Oh, maybe you were using the latching variable that triggers the lights? Try this. The first one clears the light, and the second controls the physical button.
2 (>L:var_MasterCautionLatching, number) 1 (>L:var_MasterCautionButtonDown_L, bool)
-
This is what i do in Spad Picture