删除Child帧动画MovieClip,会停止帧运行吗?
如果我删除Child帧动画Movieclip,它会自动停止运行其中的帧吗?实际上没有调用 mc.stop();
If I removeChild frame animated Movieclip, will it automatically stop running the frames inside it? Actually without calling mc.stop();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信它会继续播放,原因是你的影片剪辑仍然是一个闪存实体,不是在舞台上(所以不适合你),而是闪存(是的,他可以看到所有)。
因此,一旦您创建了新的影片剪辑,就可以播放它...您可以添加或删除正在运行的剪辑,而无需停止。基本上改变父级并不会改变 mc 的状态。
I believe it will continue to play, reason being your movie clip is still a flash entity not on stage( so not for you), but for flash (yes he can see all).
So once you create a new movieclip, play it... you can add or remove the running clip without stopping. Basically changing parent doesn't change the state of the mc.
不会。时间线仍然会播放,并且您可能拥有的所有框架脚本仍然会被调用。
小心时间线恶魔:)
No. The timeline will still play, and all the framescripts you might have in there will still be called.
Beware of the timeline devils :)