Enterprise APP
한글 입력 지연 문제 본문
package components
{
import mx.controls.TextInput;
import mx.core.mx_internal;
use namespace mx_internal;
public class CustomTextInput extends TextInput
{
public function CustomTextInput()
{
super();
}
public function get ktext():String
{
return textField.text;
}
override protected function createChildren():void
{
super.createChildren();
getTextField().alwaysShowSelection = true;
}
}
}
http://stbaeya.com/tc/130?TSSESSIONstbaeyacomtc=5284303d64f13ec62b2fdf8057d68343
{
import mx.controls.TextInput;
import mx.core.mx_internal;
use namespace mx_internal;
public class CustomTextInput extends TextInput
{
public function CustomTextInput()
{
super();
}
public function get ktext():String
{
return textField.text;
}
override protected function createChildren():void
{
super.createChildren();
getTextField().alwaysShowSelection = true;
}
}
}
http://stbaeya.com/tc/130?TSSESSIONstbaeyacomtc=5284303d64f13ec62b2fdf8057d68343
'Flex General > Tips' 카테고리의 다른 글
XML, Text 파일 Embed 처리 (0) | 2010.05.12 |
---|---|
Flex, JSP에서 xml 데이터 교환 (0) | 2010.04.30 |
Flex4 배경 투명(background alpha) 설정하기 (0) | 2010.04.28 |
Flash Bulider 4 Secrets (0) | 2010.04.09 |
XMLList(XML) to Array, (0) | 2010.04.01 |
Comments