Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
When you say "I am using a LocalConnection script to refresh the flash files on the page so that they retain the latest data." Are you sure? Localconnection is used to connect 2 swfs with a same shared point access. – papachan Jun 2 '11 at 16:10
I invoke the LocalConnection and select the methodToExecute in the other flash files and load the current flash file with _root.loadMovie(_root._url);: var my_receive_refresh2:LocalConnection = new LocalConnection(); my_receive_refresh2.methodToExecute = function(id_refresh:String) { if (id_refresh == "sent"){ id_refresh = "done"; _root.loadMovie(_root._url); } }; my_receive_refresh2.connect("lc_refresh" + positionNum); – user601935 Jun 6 '11 at 8:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.