从中断处暂停和恢复播放

发布于 2024-12-11 03:11:33 字数 284 浏览 2 评论 0原文

我在主时间轴上有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一身软味 2024-12-18 03:11:33

您应该将声音类型设置为Stream

在此处输入图像描述

You should set the sounds type as Stream.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文