Page 1 of 1

[BUG] setValue doesn't work for new global variables

Posted: 19 Apr 2015 04:35
by gollyzila
I created a global variable global_test as a boolean set to false and setValue(global_in_car, true); doesn't change its value.

Build 20150410_144429_51e135e

Re: [BUG] setValue doesn't work for new global variables

Posted: 19 Apr 2015 06:18
by kintrupf
gollyzila wrote:I created a global variable global_test as a boolean set to false and setValue(global_in_car, true); doesn't change its value.
Build 20150410_144429_51e135e
Set the name of the variable in single quotes and it should work: setValue('global_in_car', true);

Re: [BUG] setValue doesn't work for new global variables

Posted: 19 Apr 2015 06:44
by gollyzila
Thanks, that worked!