我试图在我的 Flash 项目中缓存一些图像,因为这些图像可以经常查看。问题是我总是遇到沙盒违规错误。我正在使用 Loader 实例获取图像。我将在下面向您展示我的源代码:
Security.loadPolicyFile("https://photos-4.dropbox.com/crossdomain.xml");
var loaderContext:LoaderContext = new LoaderContext();
loaderContext.checkPolicyFile = true;
var newLdr:Loader = new Loader();
newLdr.contentLoaderInfo.addEventListener(Event.COMPLETE, onCloudImageComplete);
newLdr.load(new URLRequest(this.thumbUrl), loaderContext);
在这里,我粘贴了我遇到的错误:
SecurityError: Error #2123: Security sandbox violation: LoaderInfo.content: http://picapoco.local/swf/poUploader_v3.0.swf cannot access https://photos-4.dropbox.com/t/0/AADzWqfBfPvOfff1q0JaIm7Z5EaG8C1MNd-8Z1yCxaoWDg/12/189302658/jpeg/200x200/1/_/0/4/IMGP7780.JPG/yotcoll2bm4le7h/kpHeca7yyu/IMGP7780.JPG. No policy files granted access.
at flash.display::LoaderInfo/get content()
at picapoco.models::Picture/onCloudImageComplete()
有什么线索可以帮我解决吗?