从中断处暂停和恢复播放
我在主时间轴上有 10 帧,每帧上都有一个影片剪辑。每个影片剪辑都包含一些动画和声音(放置在单独的图层上)。
我需要创建 2 个按钮来控制动画:暂停和恢复。
这是我尝试过的:
on(release) {
_root.mc.play();
}
on(release) {
_root.mc.stop();
}
这似乎适用于动画,但它不会暂停画外音(声音)。 最好的方法是什么?我需要这个用于 ActionScript 2。
I have a 10 frames on main timeline with a movieclip on each frame. Every movieclip contains some animation and sound (placed on separate layer).
I need to create 2 buttons to control the animation: a Pause and Resume.
Here is what i have tried:
on(release) {
_root.mc.play();
}
on(release) {
_root.mc.stop();
}
This seems to work on animations, but it does not pause the voiceover(the sound).
What is the best way to go about it. I need this for ActionScript 2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将声音类型设置为
Stream
。You should set the sounds type as
Stream
.