[問題] 按鈕按下顯示秒針數字

看板Flash作者 (minnie)時間11年前 (2013/03/25 19:58), 編輯推噓1(101)
留言2則, 2人參與, 最新討論串1/1
我想做一個有三個按鈕分別為開始 暫停 顯示秒數 按下開始秒針會開始跑 按下暫停則會停下來 但是只有按下顯示秒數才會顯示停在幾秒(數字) 小的目前卡在按下顯示秒數後在案開始 數字不會消失>< 不過我希望在開始及暫停的時候是不要顯示秒數的 附上我做的程式碼 希望有大大可以幫我~~~ import flash.events.MouseEvent; stop_btn.addEventListener(MouseEvent.CLICK, movie_stop); function movie_stop(e:MouseEvent):void{ sec_needle.stop(); } ans_btn.addEventListener(MouseEvent.CLICK,answer); function answer(e:MouseEvent):void{ sec_needle.stop(); if(sec_needle.needle1.rotation<0){ tel.text=String(Math.round(60-(Math.abs(sec_needle.needle1.rotation)/6))); } else{ tel.text=String(Math.round(sec_needle.needle1.rotation/6)); } trace(Math.round(sec_needle.needle1.rotation)/6) } play_btn.addEventListener(MouseEvent.CLICK,movie_play); function movie_play(e:MouseEvent):void{ sec_needle.play(); } 感謝大大幫忙~ -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 60.244.53.3

03/25 20:10, , 1F
在stop的地方清除文字 tel.text="";
03/25 20:10, 1F

03/25 20:20, , 2F
謝謝Z大的幫忙我順利做出來了^^
03/25 20:20, 2F
文章代碼(AID): #1HK3lu5- (Flash)
文章代碼(AID): #1HK3lu5- (Flash)