Blake, could I trouble you with one more question?
With the gear in transit I get flashing green gear lights which extinguish or turn solid as appropriate when the movement is completed. Ideally though the lights would be solid red whilst the gear in transit. I've tried making alterations to the section copied below but nothing I've tried results in solid green (down) solid red (transit) and lights off (up). Do you have any suggestions? Thanks.
if self._is_failed then
set_gear_led(self._led,GEARIND_RED,(not (self:isDown() and GearHandleIsDown:isTrue())))
else
if self:isUp() and GearHandleIsDown:isFalse() then
set_gear_led(self._led,GEARIND_OFF)
elseif SimIsOnGround:isFalse() or GearHandleIsDown:isTrue() then
set_gear_led(self._led,GEARIND_GREEN,self:isInTrans())
else -- why is the gear handle up when the sim is on the ground?
set_gear_led(self._led,GEARIND_RED,true)
end
end
else
set_gear_led(self._led,GEARIND_OFF)