프레임 타이머

var a = getTimer();
this.onEnterFrame = function (){
	//trace(a);
	if((getTimer() - a) >2000){
		this.gotoAndPlay(1);
		this.onEnterFrame = null;
	}
}

약 2초 뒤에 1번 프레임으로 되돌아감.


About this entry