I am looping through a bunch of JSON values and if a value equals 1 I am trying to set it to 999 by using set JSON.CurrentValue.
However, when I print the current value straight after this 'set' command it still prints as 1.
here is the code as text..
+ JSON_MAIN: For each entry in "profile_"&Current_Profile&".achievements_unlocked"
----+ System: JSON_MAIN.CurrentValue = 1
-----> JSON_MAIN: Set JSON_MAIN.CurrentValue to 9999
-----> Browser: Alert JSON_MAIN.CurrentValue (This Alert prints 1???? I expect 999)
Anyone know what I'm doing wrong?
Thanks