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
'Flash > 초간단액션' 카테고리의 다른 글
선잇기 (0) | 2011.09.21 |
---|---|
[초간단액션]마우스로 그림그리기 (0) | 2009.05.21 |
Flash [초간단액션] 3프레임으로 된 간단 버튼 (0) | 2009.04.15 |
Flash [초간단액션] 초간단 스크롤 만들기 (0) | 2009.04.15 |
Flash [초간단액션] 무비클립 드레그하기 예제 - 상하좌우 움직임(드레그 영역) 제한 두기 (0) | 2008.11.11 |