2010-10-17 110 views
0

我的.fla文件旁邊有1.mp3,當我試圖運行電影測試時,它不會播放任何聲音。只有舞臺有一個小故障是它保持循環幀1和2.發生什麼?Flash CS5沒有聲音?

var mySoundReq:URLRequest = new URLRequest("1.mp3"); 
var mySound:Sound = new Sound(); 
mySound.load(mySoundReq); 
mySound.addEventListener(Event.COMPLETE, playSong); 

function playSong(event:Event):void { 
mySound.play(); 
} 

我與按鈕測試影片在舞臺上: http://img156.imageshack.us/img156/9950/cs5c.jpg

回答

0

我的希望是,這個問題是與你所添加的玩兒法的事件。

不是在COMPLETE事件中添加它,而是在第一幀沒有任何事件的情況下嘗試它,它會在輸入幀時運行一次。

else add a button and test the play method in the mouse_up or click event。