+1
"translate"action with "else" statement
When using this code, "else" is never evaluated:
If I change it to the following, then it works fine:
Should it work like that?
<if lhs="[var:x]" operator="=" rhs="1">
<translate target="OBJ" xpos="[var:X-POS]" time="1" />
<else>
<translate target="OBJ" xpos="[var:X-POS1]" time="1" />
</else>
</if>
If I change it to the following, then it works fine:
<if lhs="[var:x]" operator="=" rhs="1">
<assign property="var:X-POS2" value="[var:X-POS]" />
<else>
<assign property="var:X-POS2" value="[var:X-POS1]" />
</else>
</if>
<translate target="OBJ" xpos="[var:X-POS2]" time="1" />
Should it work like that?
Kundesupport af UserEcho
Thank you.
Thanks.