在HTML容器中运行使用localConnection的flash组件时,我在弹出框中出现以下错误(flash player是调试版):
错误#2044:未处理的SecurityErrorEvent:。 text =错误#2047:安全沙箱冲突:LocalConnection.send:127.0.0.1无法访问
答案 0 :(得分:3)
将网页的网址从http://127.0.0.1/更改为http://localhost/解决了这个问题。
答案 1 :(得分:2)
//在接收器文件的实例化后添加此行
receiveSwf_lc.allowDomain( “本地主机”);
//或您喜欢的任何域名,使用*作为通配符以允许任何域名
答案 2 :(得分:0)
你也可能想要添加一个crossdomain.xml文件,但这里有一个不错的解释:http://scottrockers.com/blog/resources/flash-information/workaround-solution-to-flash-error-2044-unhandled-securityerror-and-error-2048-security-sandbox-violation
答案 3 :(得分:0)
您可以添加主机文件条目并将其指向127.0.0.1。