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);