所以這裏的問題一幀動作的工作:三分之二的MovieClip按鈕在使用ActionScript 3.0
我已經創建了3個按鈕的符號,它們各自與自己的實例名稱自己3影片剪輯符號。
在第1幀上的actionframe,我有以下代碼:
stop();
codebutton.addEventListener(MouseEvent.MOUSE_UP, onReleaseCode);
titlebutton.addEventListener(MouseEvent.MOUSE_UP, onReleaseTitle);
audiencebutton.addEventListener(MouseEvent.MOUSE_UP, onReleaseAudience);
function onReleaseCode(e:MouseEvent):void {
nextFrame();
}
function onReleaseTitle(e:MouseEvent):void {
this.gotoAndPlay(187)
}
function onReleaseAudience(e:MouseEvent):void {
this.gotoAndPlay(416)
}
就像我說的,他們2的工作:audiencebutton和codebutton。 titlebutton不。
我在ActionScript 3.0中並不是很有經驗,如果任何人都可以提供一些很棒的輸入。
它不能被竊聽,因爲我不使用標籤,是嗎?
作爲第一個測試,在幀#187拍擊動作層上的跟蹤語句,並檢查它實際上做任何事情。 – Vesper 2013-04-09 13:53:03
如果你不介意我,我會編輯你所有的表情符號,因爲它們令我煩惱。 – Joetjah 2013-04-09 13:58:30
對不起,它只是不會從按鈕所在的第1幀移開。 – noland 2013-04-09 16:19:38