flash预加载器打印问题
我有一个带有预加载器的 Flash 电影。 Preloader Event.COMPLETE 侦听器看起来像这样
removeEventListener(Event.ENTER_FRAME, onFrame);
stage.addChild(loader.content);
parent.removeChild(this);
问题是,当我尝试打印它加载的电影时,会打印预加载器。为什么会发生这种情况?
I've got a flash movie with preloader. Preloader Event.COMPLETE listener looks like this
removeEventListener(Event.ENTER_FRAME, onFrame);
stage.addChild(loader.content);
parent.removeChild(this);
The problem is that when I try to print the movie that was loaded by it, preloader is printed instead. Why can this be happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是足够奇怪的风格
parent.removeChild(this);
但我需要更完整的代码来看看你在那里做什么。THis is enough weird style
parent.removeChild(this);
but I need a more full code to see what are you doing there.