嗨,我正在尝试从 MainMenu 类停止秒表类中的计时器。但是我的代码不起作用,这是我的代码:
在 MainMenu 类中我有方法:
public function pauseGame (e:MouseEvent){
timestop = new Stopwatch();
timestop.Stoptimer();
}
在课堂秒表中,我尝试通过以下方式停止计时器:
public function Stoptimer(){
timer.stop();
timer.removeEventListener(TimerEvent.TIMER, timeFun);
return;
}