我一直收到这个错误,我不知道如何修复它,它在另一个类中工作,所以它应该在这里工作,对吧?(我把它从那个类移到这个类)唯一的区别是这个类扩展了“Game”而另一个类扩展了“MovieClip”
1067: Implicit coercion of a value of type flash.utils:Timer to an unrelated type Function.
public static var timeLeft;
public function GamePlay() {
// Start timer
var timeCounter:Timer = new Timer(1000, timeLeft)
timeCounter.addEventListener(TimerEvent.TIMER, timeCounter);
timeCounter.start();
}
// Handle time counter
public function timeCounter(e:TimerEvent):void {
timeLeft--;
trace(timeLeft);
}