Shared Objects isn't saving to a text file. Shared Objects is cookies itself. The syntex is as follows.
To save a cookie.
setCookie("stats","name",_root.name);
Okay the first two words in " " is the name of the cookie it will save in. Kind of like a file cabinet. It would be in the stats folder and name would equal _root.name.
To load the Cookie.
_root.name = getCookie("stats","name");
All your doing is specifing the file name since name equals _root.name. The first part with the _root.name is the varible you want the cookie to equal. And thats all there is to it. Keep in mind this is only used in Flash MX.
Laters.
