반응형

Flash 72

Flash [초간단액션] 3프레임으로 된 간단 버튼

초간단 3프레임으로 구성된 무비클립으로 롤오버시 2프레임 롤아웃시 1프레임 클릭시 3프레임으로 고정 onClipEvent(load){ this.isClick = false; this.onRelease = function(){ if( this.isClick ) return; this.isClick = true; this.gotoAndStop(3); } this.onRollOver = function(){ if( this.isClick ){ this.useHandCursor = false; return; } this.gotoAndStop(2); } this.onRollOut = function(){ if( this.isClick ) return; this.gotoAndStop(1); } } [초간단액션] 은..

Flash [초간단액션] setFocus 입력창이 활성화 되면 처음 글자는 사라진다.

onClipEvent(load){ //Selection.setFocus(this.txt1); this.isClean = false; this.txt1.onSetFocus = function(){ if( this.isClean ) return; this.isClean = true; this.textColor = 0x000000; this.text = ""; } } 요구사항 텍스트필드 첨에는 글씨가 희미하게 있다가 선택후에는 글씨가 사라지고 직접쓰기로 바뀜. Textfield 에 글을 회색을 바꾼뒤 해당 입력텍스트를 클리가혐 onSetFocus 를 통해 글을 지우고 입력텍스트칼라도 검정으로 바꾸었다. TextField Format http://flexdocs.kr/docs/flex2/langref/flash..

반응형