AS3 Timer.currentCount

Timerの現在のカウント数のプロパティです。
なにかと使う場面が増えてきました。

var timer=new Timer(1000);
timer.addEventListener(TimerEvent.TIMER,timerAction);
timer.start();

function timerAction(event){
 trace( event.target.currentCount );
}