0

ブラウザからゲームをロードしようとすると、次のエラー メッセージが表示されました。

*** Security Sandbox Violation ***
SecurityDomain 'https://playerio.s3.amazonaws.com/competitions/ega2012/swf/Nhm-JFy6dEyuemmaE59BSQ.swf?AWSAccessKeyId=1Q3ETXSFA8S2F2TSA9R2&Expires=1361787227&Signature=TBCVKQDGlxthLj2YhoumxTxUGOo%3D' tried to access incompatible context 'http://cdn.playerio.com/rts-tvkyczvzk5uwqv8z12rw/Game2build29.swf'
SecurityError: Error #2121: Security sandbox violation: LoaderInfo.content: https://playerio.s3.amazonaws.com/competitions/ega2012/swf/Nhm-JFy6dEyuemmaE59BSQ.swf?AWSAccessKeyId=1Q3ETXSFA8S2F2TSA9R2&Expires=1361787227&Signature=TBCVKQDGlxthLj2YhoumxTxUGOo%3D cannot access http://cdn.playerio.com/rts-tvkyczvzk5uwqv8z12rw/Game2build29.swf. This may be worked around by calling Security.allowDomain.
   at flash.display::LoaderInfo/get content()
   at Loader3_fla::MainTimeline/onCompleteHandler()[Loader3_fla.MainTimeline::frame1:86]

Security.allowDomain() を使用してこのエラーを回避できると書かれていますが、どのドメインを許可すればよいかわかりません!

4

1 に答える 1

0

crossdomain.xml をプロジェクト フォルダーに配置する必要があります。このフォルダーでは、アプリケーションがデータをフェッチするすべてのドメインまたは特定のドメインを許可できます。

<?xml version="1.0" ?>
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>

上記はすべてのドメイン用です。特定のドメインを許可する場合:

<allow-access-from domain="www.mysite.com" />
<allow-access-from domain="mysite.com" />
于 2013-02-25T05:39:31.327 に答える