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!
how to assing value to a variable?
Moderator: Martin
Re: how to assing value to a variable?
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;
Index of Automagic useful thread List of my other useful posts (and others')
Xiaomi Redmi Note 5 (whyred), AOSP Extended v6.7 build 20200310 Official, Android Pie 9.0, Rooted.
Xiaomi Redmi Note 5 (whyred), AOSP Extended v6.7 build 20200310 Official, Android Pie 9.0, Rooted.
Re: how to assing value to a variable?
Really thank you !