I hope you can help, I am storing data to a sharedObject invoking the sharedObject thus:
var mySharedObject = SharedObject.getLocal("userDataPrem", "{domainname}/demopremium/");
{domainname}/demopremium/ - is the path to the location of my Flash files
I have 10 buttons on a page that write to the sharedobject upon button click
I am using a LocalConnection script to refresh the flash files on the page so that they retain the latest data.
This works as expected, however, when opening up the same page in a different tab the flash files do not update, this is also the case when I open another domain with my SharedObjects in.
The SharedObject name is different for each domain to eliminate the possibility of a collision with the .sol files if they have the same name.
The solution I am looking for would enable each instance of the website to continue to update even if opened in a different window.
I found an example here (http://www.permadi.com/tutorial/flas...ect/index.html) that works but no source code available
Any help would be greatly appreciated.