基本上我有这种声音效果,喜欢添加到我的电影剪辑。当我触摸球(电影剪辑)时它会移动到一个新位置,加速并且分数上升。在触球的确切点,就像播放的声音效果一样。
以下是球触摸的代码:)
function fl_TapHandler(event:TouchEvent):void {
_touch = true;
timmyTimer.reset();
score +=1;
mcBall.x = Math.floor(Math.random() *(stage.stageWidth - mcBall.width));
mcBall.y = Math.floor(Math.random() *(stage.stageHeight - mcBall.height));
mcBall.nextFrame();
removeChild(mcBall);
timmyTimer.reset();
timmyTimer.start();
updateScores();
}
答案 0 :(得分:0)
您的声音是否已导入?
然后你可以。
1. Export sound for action script.
2. After you have exported your sound. You can now create instance of your sound
var sound:Sound = new MySound();
3. Play Sound.
sound.play(1, 1); //(starttime, timesrepeat);