Page 1 of 1

how to assing value to a variable?

Posted: 04 Oct 2017 10:24
by wfrcrd
A very simple question:
I need to assign a value (0 or 1) to a global variable. I need it to check if an action has been performed or not. What action should I use, for example to set the global variable A to 1?
Thank you!

Re: how to assing value to a variable?

Posted: 04 Oct 2017 13:12
by Desmanto
Action Script, put it after the action you wanna check. If no error, the flow usually should continue and execute the script.

Code: Select all

global_A = 1;

Re: how to assing value to a variable?

Posted: 06 Oct 2017 17:00
by wfrcrd
Really thank you !