我試着做一個直升飛機場比賽,我有一個標題畫面添加到我的比賽,但是每當我試圖removeChild之按鈕不刪除 - 它給了我這個錯誤:閃爍亮AS3錯誤#2025
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
at flash.display::DisplayObjectContainer/removeChild()
at CopterScratch/gameStart()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at fl.controls::LabelButton/keyUpHandler()
這是我的代碼:
public function gameStart(e:MouseEvent):void {
removeChild(objTitleScreen);
if (btnStart.enabled){
removeChild(btnStart);
}
removeChild(rbNormal);
removeChild(rbDifficult);
tmrMoveMap.start();
tmrGravity.start();
addChild(objHelicopter);
}
你能說明你把addChild()代碼放在哪裏嗎?此外,你的方法屬於哪個類。 –