复制影片剪辑和声音开关

发布于 2024-11-28 00:21:45 字数 204 浏览 2 评论 0原文

on (press) {
    i = i + 1;
    duplicateMovieClip (_root.circle, "circle" + i, i);
}

如何在 flash as3 编码中使用该代码,请给我一些示例或链接,如何在 as3 中创建重复的影片剪辑?请告诉我如何在 flash as3 中播放/暂停一种特定的声音?

on (press) {
    i = i + 1;
    duplicateMovieClip (_root.circle, "circle" + i, i);
}

how to use that code in flash as3 coding and please give me some example or link, how to create duplicate movieclip in as3 ?And please tell me how to play/pouse one particular sound in flash as3 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情域 2024-12-05 00:21:45

Jens Struwe 发布了一个链接作为评论,它将帮助您解决重复电影剪辑问题。

当您开始使用 mySound.play() 播放声音时,它会返回一个 SoundChannel 对象,获取对其的引用,然后使用 mySoundChannel.stop()< /code> 停止播放。此外,当您停止声音播放时,请使用 var myStopPosition:Number = mySoundChannel.position 来找出停止的位置。然后,当您想要恢复播放时,将该位置传递给 mySound.play(myStopPosition)

Jens Struwe posted a link as a comment, it will help you with the duplicateMovieClip problem.

When you start playing a sound with mySound.play() it returns a SoundChannel-object, grab a reference to it and then use mySoundChannel.stop() to stop the playback. Also when you stop the sound playback, use var myStopPosition:Number = mySoundChannel.position to find out where you stopped. Then pass that position to mySound.play(myStopPosition) when you want to resume playback.

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