Ok, well no response to my last post, let's see if this question sparks any interest.
I'm also trying to get an animation to work via a gauge. The way I'm trying to set it up is, like this:
Button A triggers the animation, but only if Button B with a different condtion assigned to it is pressed first. If Button B isn't pressed first, then pushing Button A has no effect. Make sense?
Here is what I've got so far. Be nice and try not to laugh as I'm brand new to the whole XML thing.
Any help would be greatly appreciated!!
tre88
I'm also trying to get an animation to work via a gauge. The way I'm trying to set it up is, like this:
Button A triggers the animation, but only if Button B with a different condtion assigned to it is pressed first. If Button B isn't pressed first, then pushing Button A has no effect. Make sense?
Here is what I've got so far. Be nice and try not to laugh as I'm brand new to the whole XML thing.
Code:
<Element>
<Select>
<Value>(L:Var_A, bool)
(L:Var_B, bool)
</Value>
<Case Value="0">
<Image Name="button_A_up.bmp"/>
</Case>
<Case Value="1">
<Image Name="button_A_down.bmp"/>
</Case>
</Select>
</Element>
<Mouse>
<Cursor Type="Hand"/>
<Click>>(L:Var_A, bool) if{ (L:Var_B, bool) =1 > } els{ 0 (>L:Var_A,bool) }
</Click>
</Mouse>
</Gauge>
Any help would be greatly appreciated!!
tre88




