Flash/초간단액션
Flash [초간단액션] setFocus 입력창이 활성화 되면 처음 글자는 사라진다.
OJR
2009. 4. 14. 16:48
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 = "";
}
}
//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/text/TextField.html#textColor