0
嘗試在我的閃存程序正在使用時循環背景音軌。AS3中的循環聲音
到目前爲止,我的代碼是這樣的:
//turn off sound
btnOff.addEventListener(MouseEvent.CLICK, fl_stopsound);
function fl_stopsound(event:MouseEvent):void
{
SoundMixer.stopAll();
}
//turns sound on
btnOn.addEventListener(MouseEvent.CLICK, fl_ClickToPlayStopSound_1);
var fl_SC_1:SoundChannel;
//keeps track of whether the sound should be played or stopped
var fl_ToPlay_1:Boolean = true;
function fl_ClickToPlayStopSound_1(evt:MouseEvent):void
{
var mySound:Sound = new background();
mySound.play();
}
其中btnOff關閉聲音和btnOn打開的聲音。我的配樂是1:50分鐘。使用這些按鈕可以在程序中循環軌道嗎?
乾杯
輝煌,那作品! :) – ConfusedDreamweaverUser