0
私はこのクラスを作って、私はTimeline.as(ドキュメントクラス)の同じパッケージにそれを置く:フラッシュCS、外部クラスから参照ルート
package {
import flash.utils.Timer;
import flash.events.TimerEvent;
public class Counter2 extends Timer {
public function Counter2(delay:Number, repeatCount:int=0) {
super(delay, repeatCount);
super.addEventListener(TimerEvent.TIMER, timerHandler);
}
public override function start():void {
super.start();
}
public override function stop():void {
super.stop();
}
public function timerHandler(evt:TimerEvent) {
trace(evt.target.currentCount);
}
}
}
このクラスはTimeline.asコンストラクタでインスタンス化されます。 タイムライン(ルート)をこのクラスから参照する方法はありますか?そしてもしそうなら、どのように?
ありがとうございます!