2014-04-10 39 views
0

我有一個名爲content的影片剪輯。我希望當鼠標滾過按鈕時,內容顯示並開始播放動畫。現在,當我將鼠標懸停時,它會播放影片剪輯,當我展開時,它會消失,這很好。但問題是當我再次翻車時,什麼也沒有顯示出來。任何想法?先謝謝你。當鼠標在閃光燈中翻轉時,如何讓這兩件事情同時發生

這裏是我的代碼:幹訓局的

代碼

btn.addEventListener(MouseEvent.ROLL_OVER, test); 
function test(event:MouseEvent):void{ 
    content.visible=true; 
    content.play(); 
} 


btn.addEventListener(MouseEvent.ROLL_OUT, test2); 
    function test2(event:MouseEvent):void{ 
    content.visible=false; 
} 

影片剪輯代碼:

Stop(); // 1st frame 
Stop(); // last frame 

回答

0

你應該使用gotoAndPlay()

function test(event:MouseEvent):void{ 
    content.visible=true; 
    content.gotoAndPlay(1); 
} 
重播電影
+0

甜!這樣可行!非常感謝。 – user3518331

相關問題