I am hoping that someone can help me on the translator macro here, i can't get the if statement to work.
If i test the following code, i will get to label :yesact no matter what var_zyx is.
Also i am unable to get save variable to work, the value is empty always.
Thanks
If i test the following code, i will get to label :yesact no matter what var_zyx is.
Also i am unable to get save variable to work, the value is empty always.
Thanks
Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<macro>
<item command="Set Variable: var_zyx|no" />
<item command="If: var_zyx|==|yes|yesact|noact" />
<item command="Label: yesact" />
<item command="Popup: ABC|yes|1" />
<item command="Set Variable: var_zyx|no" />
<item command="Goto Label: end" />
<item command="Label: noact" />
<item command="Popup: ABC|no|1" />
<item command="Set Variable: var_zyx|yes" />
<item command="Label: end" />
</macro>
United States of America