I'm having troubles understanding this piece of code... I managed to do it with buttons, in the _root but when I try to do it within a movie clip, I just can't get it to work. This might have to do with the fact that I don't understand much of what "var" is for...
I tried to do it like this for the save (within a movieclip)
_root.savefile:SharedObject = SharedObject.getLocal("save");
_root.savefile.data.whatever = _root.whatever;
_root.savefile.flush();
and I tried a bunch of different things for the load but this is what I've got currently (within a separate movieclip)... I removed the "var" thing because I apparently couldn't use _root with it... but I don't know, maybe I just made things worse.
_root.savefile = SharedObject.getLocal("mord_save");
_root.whatever = _root.savefile.data.whatever;
Please, if you know what I'm doing wrong, let me know!
Also, Denvish, seen a couple of your games lately, I must say I admire your flash skills. It's like we're using entirely different programs...