Hello, I'm trying to make a guage that will switch between value 0 and 1, this is the code I have so far
if I set the <click> to give the value of 1 to G:Var1 it works but then ofc it doesnt switch back so is there anything wrong there to why this isnt going back and forth?
<Gauge Name="Rotor Brake" Version="1.0">
<Element>
<Select>
<Value>(G:Var1)</Value>
<Case Value="1">
<Image Name="Rotor_Brake_ON.bmp"/>
</Case>
<Case Value="0">
<Image Name="Rotor_Brake_OFF.bmp"/>
</Case>
</Select>
</Element>
<Mouse>
<Cursor Type="Hand"/>
<Click>(G:Var1)!(>G:Var1)</Click>
</Mouse>
</Gauge>
if I set the <click> to give the value of 1 to G:Var1 it works but then ofc it doesnt switch back so is there anything wrong there to why this isnt going back and forth?
