Hi!
I have 2D array "2DArray" making by AJAX requesting .txt file:
11;22;33;44;
55;66;77;88;
and I have global variable (type number):
"TESTvariable"
I need to set "22" to "TESTvariable"
I make this:
Set "TESTvariable" to 2DArray.At(0,1,";")
But I've got a 0 to "TESTvariable"
So I make this:
int(Set TEST to 2DArray.At(0,1,";"))
But I've got a 0 to "TESTvariable" again.
How do I set data from array to global variable (type number) correctly?