본문 바로가기

FLASH/AS2.0

무비클립으로 만든 라디오버튼



라디오버튼.fla



플래시로 만든 라디오버튼입니다.

무비클립으로 만든 것인데 자동 생성되지는 않지만 퀴즈 같은 것을 만들 때 편리하게 사용할 수 있습니다.


무비클립 안에 다음의 액션이 들어 있습니다.


var _crtCheck:MovieClip = null;

function offCheck(btn:MovieClip) {

try {

if(btn != _crtCheck) {

_crtCheck.gotoAndStop(1);

}

} catch(e:Error) {

trace(e);

}

}


check1.onRelease = check2.onRelease = check3.onRelease = check4.onRelease =  function() {

offCheck(this);

this.gotoAndStop(2);

_crtCheck = this;

var scr = this._name.substr(-1);

var id = this._parent._name.substr(1);

trace("scr:"+scr);

trace("id:"+id)

}



//초기화

function initApplication(){

check1.gotoAndStop(1);

check2.gotoAndStop(1);

check3.gotoAndStop(1);

check4.gotoAndStop(1);

}


 initApplication();


라디오 버튼을 추가하려면 빨간색으로 표시된 부분을 하나씩 늘려주면 됩니다.