こんにちは、MainMenu クラスのストップウォッチ クラスでタイマーを停止しようとしています。しかし、私のコードは機能しません。これが私のコードです:
MainMenu クラスで私はメソッドを持っています:
public function pauseGame (e:MouseEvent){
timestop = new Stopwatch();
timestop.Stoptimer();
}
クラス Stopwatch で、次の方法でタイマーを停止しようとします。
public function Stoptimer(){
timer.stop();
timer.removeEventListener(TimerEvent.TIMER, timeFun);
return;
}