我基本上需要爲子項添加另一個子項給父項。我知道localConnection,或者它被稱爲的任何東西,這對我來說太亂了。有什麼辦法可以做到這一點?AS3將子項添加到父項
這是主代碼 var c:childboy = new childboy(); //在類的構造函數是suposed添加子
這是childboy 包 { 進口使用flash.display.Loader的代碼;
public class childboy
{
var ass:Loader = new Loader();
public function childboy()
{
parent.addChild(ass);
}
}
}
孩子們不應該這樣操縱自己的父母。它違反了良好的面向對象。你最終的目標是什麼? –