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'm trying get LocalConnection to work between two swf's placed within two different IFRAMES. I've worked with LocalConnection often without too much trouble. But this time --i suspect because of the iframes--i can't get it to work.

Anybody experience the same?

share|improve this question

2 Answers

up vote 1 down vote accepted

Actually, it is allowed. The SWFs are all sandboxed to the same flash player instance. You just need to insure that your security configuration is correct. Take a look at the LiveDocs for LocalConnection's allowDomain function.

share|improve this answer
Cool thanks for the tip! – sthg Oct 14 '09 at 1:09

... Ok, tried this in many different ways, but it seems that Communication between iframes using LocalConnections is not allowed.

share|improve this answer
1  
Make sure that you are prefixing the the connection name used in both the connect and send functions with an underscore (example: _foo). You'll also need to specifiy the wildcard "*" to allow calls from all domains. – carlsz Feb 8 '10 at 23:34
1  
yowsa, I spent a long time on this too - I had tried absolutely everything mentioned everywhere EXCEPT the underscore convention. Ugh. – Danjah Jul 7 '10 at 2:10

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.