Does anyone know if Shared Objects have the ability to store objects. Like...
game1 = SharedObject.getLocal("RPG1");
game1.data.a.option1 = "SomeName";
game1.data.a.option2 = "OtherThing";
Would that work?? Or would I have to do something like this.
game1.data.option1A = "SomeName";
game1.data.option2A = "OtherThing";
Thanks in advance for any feedback.
~Bill
