//릴리즈 하면

menu_0_mc.onRelease=function(){

    //엔터프레임수행

    mymc.onEnterFrame = function(){

        //매프레임 알파값이 0보다 크면 5씩 감소

        if(this._alpha>0){

            this._alpha -= 5;

        }else{

            //알파값이 0보다 작으면 무비클립제거

            delete this.onEnterFrame;

            this.removeMovieClip();

        }

    }

}

'Flash' 카테고리의 다른 글

플래시 전역보안 설정  (0) 2012.06.14
플래시 액션스크립트 2.0 정리  (0) 2012.06.14
자주 사용하는 플래시와 자바스크립트 연동  (0) 2012.06.14
Posted by flazeur
,