わかりました、これは私がペンダント的であるかもしれませんが、何かを行うための最良の方法を知る必要があります: (これは疑似コードであり、実際のコードではありません。実際のコードは巨大です)
基本的に、パッケージには次のようなクラスがあります。
internal class charsys extends DisplayObject {
Bunch of Variables
a few functions
}
次のような関数を作成したいタイムラインに追加する予定の別のクラス:
public class charlist {
var list:Array = new Array();
var clock:Timer = new Timer(6000);
var temp:charsys;
function addObj(MC:DisplayObject, otherprops:int) {
temp=MC;
temp.props = otherprops;
list.push(temp)
}
function moveabout(e: event) {
stuff to move the items in list
}
function charlist() {
stuff to initialize the timers and handle them.
}
}
問題は、この配列にデータを入力する私の方法はそれを行う有効な方法ですか?もっと簡単な方法はありますか?このように継承できますか?私のようにオブジェクトを渡す必要さえありますか?
(まだパッケージを書いているので、まったく機能するかどうかはわかりません)