Quote:
Originally Posted by JustBreathe
this.vars was set to something like this.vars = {{"stuff","otherStuff"},{"stuff"}};
It isn't in trying to modify it that the problem arrises. It's just trying to read it.
|
Ah, that's not how you're supposed to do it anyway.
this.vars = { "varname=foo", "varname2=bar" };
this.obj.loadvarsfromarray(this.vars);
this.obj.varname now has the value of 'foo' and this.obj.varname2 now has the value of 'bar'