October 20, 200322 yr GuysI would like a switch that performs one action when flicked on and another action when flicked off.I need to increase throttle to full when in the on position, and then decrease throttle to off when the switch is turned off. So far all I have is:(L:Prop,bool) 0 (>K:THROTTLE1_FULL) (L:Prop,bool) ! (>L:Prop,bool)Is there a way to make this switch do what I need??As always, help most appreciated.Steve
October 20, 200322 yr Hi, Not tested, just an idea:(L:Prop,enum) 0 == if{ (>K:THROTTLE_CUT) }(L:Prop,enum) 1 == if{ (>K:THROTTLE1_FULL) } (L:Prop,enum) ! (>L:Prop,enum)Jan"Procul Negotiis" Jan "Beatus ille qui procul negotiis..."
October 20, 200322 yr Hi,Or may be just this in the Click Event?(L:Prop,enum)(L:Prop,enum) 0 == if{ 1 (>L:Prop,enum) (>K:THROTTLE1_FULL) } els{ 0 (>L:Prop,enum) (>K:THROTTLE_CUT) }Jan"Procul Negotiis" Jan "Beatus ille qui procul negotiis..."
Create an account or sign in to comment