Flex 加载外部 swf 会阻止其他功能
我能够使用 Loader 类将外部 swf 导入到我的项目中,它工作得很好。 但我还尝试对舞台进行 ImageSnapshot,在导入外部 swf 之前它可以正常工作。导入 swf 后,ImageSnapshot 不再起作用。
有什么想法吗?外部 swf 是否会带来一个会禁用它的事件?
I am able to use the Loader class to import an external swf into my project, its working great.
But Im also trying to do a ImageSnapshot of the stage which works fine before the external swf is imported. After the swf is imported the ImageSnapshot no longer works.
Any idea? is there a event that the external swf is bringing with it that would disable it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在
Loader.load()
函数中发送LoaderContext
对象。在该LoaderContext
上,将checkPolicyFile
设置为 true。像这样:checkPolicyFile
标志的作用是告诉主机 swf 从已加载的 swf 的服务器加载策略文件。如果您在加载时未指定该标志,则当您尝试通过BitmapData.draw()
从加载的 swf 获取像素数据时,您将收到SecurityError
。有关该主题的 Adobe 文档:http:// /help.adobe.com/zh_CN/FlashPlatform/reference/actionscript/3/flash/system/LoaderContext.html#checkPolicyFile
Try to send a
LoaderContext
object within theLoader.load()
function. On thatLoaderContext
, setcheckPolicyFile
to true. Like this:What the
checkPolicyFile
flag does is that it tells the host swf to load a policy file from the loaded swf's server. If you haven't specified that flag at loading time you will recieve aSecurityError
when you try to get pixel data from the loaded swf throughBitmapData.draw()
.Adobe docs on the subject: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/system/LoaderContext.html#checkPolicyFile