hi,
i'm having some simple gui environment with a button widget (=jquery plugin) there's a gui object which holds all widgets like:
myGui["button1"] = button1;
myGui["button2"] = button2;
what i want to do is defining a widget array like:
myGui["button"][0] = button1;
myGui["button"][1] = button2;
but i'm getting an error: myGui["button"] is undefined anyone can tell me what i'm doing wrong here?
thx