SharedObject usage

Hello all…

I’m using a shared object in my project…and that’s saving a value too…

the code looks like this…


userLang = SharedObject.getLocal("lang");
if(userLang.data.lname != undefined)
{
    userLang.data.lname = "DE";
}
else
{
    userLang.data.lname = "EN";
}

and this value is storing into the local system.

the problem happening when i tried to access the stored value from another swf…

thats not accessing the value…
is there any alternatives to access this stored value from another swf?

thanks in advance…

http://www.kirupa.com/developer/mx/sharedobjects.htm