看板 Flash 關於我們 聯絡資訊
※ 引述《mc30207 (RahXephon)》之銘言: : 小弟寫了一段如下 : xx = _root.attachMovie("btn_menu", "btn_menu"+bb, this.getNextHighestDepth()); : bb++; : 然後當條件成立時清掉xx裡的所有"btn_menu"+bb : 請問要如何用removeMovieClip()寫咧? : 請指教一下 : 謝謝 你可以先用一個MC裝你的"btn_menu"+bb。 container = _root.createEmptyMovieClip("container",this.getNextHighestDepth()) xx = container.attachMovie("btn_menu", "btn_menu"+bb, this.getNextHighestDepth()) bb++; 移除時。 container.removeMovieClip(); 以上沒有測試,有打錯字之類的可能性。 -- http://etrex.blogspot.com/ -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 125.226.198.19
mc30207:我試試看,那請問有沒有方法可暫停onenterframe呢? 08/29 23:47