Scripting wrong for Save/Load-What can I do?

Right. I’ve checked out Shared Objects on the forum and that tut didn’t help me…Could anyone take a look at my fla and see what I’m doing wrong, please…I just want to be able to Save content of all Input Boxes and then Load them up again! Or does anyone know of any easier ways of doing this?

I used this tut to produce this.

I’ve attatched this code to the Save button:

on (release)
   {
   _root.pos = sharedobject.getLocal("civilrights");
   _root.pos.data.aims = _root.aims._x;
   _root.pos.data.aims = _root.aims._y;
   _root.pos.data.NAME = _root.text1;
   }

and this for the Load Button:

on (release) {
   _root.pos = sharedobject.getLocal("civilrights");
   setProperty(_root.aims, _x, _root.pos.data.aimsx);
   setProperty(_root.aims, _y, _root.pos.data.aimsy);
   _root.NAME = _root.pos.data.text1;
   }

Any ideas ? I’m really stuck…