Originally posted by JZY
In my menu will it help to set my Vars like so or no:
self.menu.background = self createrectangle("LEFT","TOP",self.var["var1"],self.var["var2"],self.var["var3"],self.var["var4"],self.var["var5"] etc
Rather than like this:
self.menu.background = self createrectangle("LEFT","TOP",self.var1,self.var2,self.var3,self.var4,self.var5 ect
No. All variables use the same amount of memory and strings. If you used numerical indexes you could save strings but other than that, not really.