Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Greeting, I have a problem with listed code that every time I click on btn1 the variable (num) will be initialize to 1. so what is the best practice in my case to initialize the variable (num) for only one time when the flash loaded.

Regards,

stop();

var num:Number =1;
function b1(event:MouseEvent):void
{
    gotoAndStop(1);
    num = num +1;

    trace(num);
}

function b2(event:MouseEvent):void
{
    gotoAndStop(2);
    trace(num);

}

btn1.addEventListener(MouseEvent.CLICK, b1);

btn2.addEventListener(MouseEvent.CLICK, b2);
share|improve this question
1  
Upvoted because this question very clearly exemplifies the dangers of writing code on the timeline, and is a potential stumbling block for anyone who relies on timeline code. – scriptocalypse Feb 14 '11 at 1:30

1 Answer

up vote 5 down vote accepted

If this code is in a frame on your timeline, it will be executed every time the frame is loaded. This means that your num declaration will be executed every time the frame is loaded as well.

I'd recommend putting the variable declaration in another frame and make sure that your playhead does not revisit that frame (otherwise the variable will be reinitialized).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.