Hi
can anyone give me a hint 'bout what this code does? I know it is writing a new SharedObject or something near but I don't get why is there a superfoo which is not introduced before this thing, does getLocal also stores data then?
var items_array:Array = new Array(101, 346, 483);
var currentUserIsAdmin:Boolean = true;
var currentUserName:String = "Ramona";
var my_so:SharedObject = SharedObject.getLocal("superfoo");
my_so.data.itemNumbers = items_array;
my_so.data.adminPrivileges = currentUserIsAdmin;
my_so.data.userName = currentUserName;
Just a 'ittl' question.![]()
thx.




Reply With Quote