As2 shared objects problem!

So,

I have 2 swf files:

I with

on(press){
    var shared_object:SharedObject;
    shared_object = SharedObject.getLocal("bogShared","/");
    text1.text = "";
    text1.text = shared_object.data[xxx];
}

II with

on(press){
    var shared_object:SharedObject;
    shared_object = SharedObject.getLocal("bogShared","/");
    shared_object.data[xxx] = text2.text;
    shared_object.flush();
    text2.text = "";
}

The problem is: if I write something to shared objects from 2nd swf work great, the sol file si modified properly, but if I try to get the informations from shared object with 1st swf I can only once. I need to take every time the informations from shared object, because if I write a different thing with 2nd sfw I want to show the changes on 1st swf.

Help!:insomniac: