AS3和链接图像

时间:2015-01-06 11:29:20

标签: actionscript-3 flash security

我的Flash动画中有一点问题。我有一个不同图像的测验。 一些图像加载正常,但其他图像没有。我有以下 error message : -

SecurityError: Error #2123: Security sandbox violation... 
No policy files granted access. 

但是,我有:

function onLoadQuiz(dataQuiz){
    onLoadSecurity.loadPolicyFile("https://fbcdn-profile-a.akamaihd.net/crossdomain.xml");
    var context:LoaderContext = new LoaderContext(); 
    context.checkPolicyFile = true;

    var url:URLRequest = new URLRequest(dataQuiz.srcImage);
    var img:Loader = new Loader();

    img.load(url, context);
    img.contentLoaderInfo.addEventListener(Event.COMPLETE, onImageLoaded);
    myLoader.load(url);
}

function onImageLoaded(e:Event):void {
    var image:Bitmap = e.target.content;
    image.width = 150;
    image.height = 150;
    image.x = 400;
    image.y = 150;
    addChild(image);
}

我不明白为什么有些图像加载正常,而其他图像(大多数)没有加载。

0 个答案:

没有答案