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.

When running flash components that use localConnection within an HTML container, I get the following error in a popup box (flash player is the debug version):

Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandbox violation: LocalConnection.send: 127.0.0.1 cannot access

share|improve this question

4 Answers

up vote 3 down vote accepted

Changing the page's URL from http://127.0.0.1/ to http://localhost/ solved the problem.

share|improve this answer

// add this line after the instanciation aof the receiver file

receiveSwf_lc.allowDomain("localhost");

// or whatever domain you like, use * as wildcard to allow any domain name

share|improve this answer

You can add a hosts file entry and point it to 127.0.0.1 as well.

share|improve this answer

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.