/ Published in: ActionScript 3
This issue came up for me when trying to load in a Bitmap over cross-domain using Bulkloader. You have to make sure the swf that is making the bulkloader call is checking for the policyFile
Expand |
Embed | Plain Text
var checkPolicyFile:Boolean = true; var loaderContext:LoaderContext = new LoaderContext(); loaderContext.checkPolicyFile = true; bulkInstance.add("yourclip.png", {context: loaderContext});
You need to login to post a comment.
