复制影片剪辑和声音开关
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 aSoundChannel
-object, grab a reference to it and then usemySoundChannel.stop()
to stop the playback. Also when you stop the sound playback, usevar myStopPosition:Number = mySoundChannel.position
to find out where you stopped. Then pass that position tomySound.play(myStopPosition)
when you want to resume playback.