开发者

Timer gives error AS3

开发者 https://www.devze.com 2023-02-07 05:28 出处:网络
I\'ve some trouble with the timer. My goal is to call it when MOUSE_OVER and to kill it when MOUSE_OUT.

I've some trouble with the timer. My goal is to call it when MOUSE_OVER and to kill it when MOUSE_OUT.

Function to start timer:

   public fun开发者_StackOverflow中文版ction timerStart():void {
                var myTimer:Timer = new Timer(1000, 1); // 1 second
                myTimer.addEventListener(TimerEvent.TIMER, runOnce);
                myTimer.start();
            }

Function to stop timer:

    public function timerStop():void {
        myTimer.stop();
    }

Function to call timer:

public function rollOverHandler(e:MouseEvent = null):void 
        {

        timerStart();
}

Function to call stop timer:

    internal final function rollOutHandler(e:MouseEvent = null):void 
    {
    timerStop(); //this one created the error message
}

Whatever I try, I keep getting this error message:

1120: Access of undefined property myTimer.

I understand the fact that he can't stop a timer which he doesn't recognize. But I am getting the error even before any mouseaction. What am I seeing wrong?

Does someone know a solution?


The problem is scope: You are declaring myTimer as a local variable. The reference will be deleted after timerStart() is executed.

Make it a member variable, and everything should work fine.

Oh, and also: Do this in the rollOutHandler:

if (myTimer != null) timerStop();

to make sure it only gets called if a timer has been set.


Thanks Weltraumpirat! Your answer just saved my day!

public static var myTimer:Timer;
        public function timerStart():void {
             // 1 second
            myTimer = new Timer(1000, 1)
            myTimer.addEventListener(TimerEvent.TIMER, runOnce);
            myTimer.start();
        }

        public function timerStop():void {
            myTimer.stop();
        }


        public function rollOverHandler(e:MouseEvent = null):void 
        {

        timerStart();
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号