View Single Post
  #4  
Old 06-22-2006, 09:32 PM
ApothiX ApothiX is offline
Okiesmokie
Join Date: May 2004
Posts: 1,447
ApothiX is on a distinguished road
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'
__________________


[06:24:19] * Parts: Skyld (i=silent@unaffiliated/skyld) ("Perhaps Okiesmokie did not realise that I like the boys. ")
Reply With Quote