입력한 텍스트의 영문 혹은 한글 문자를 반환한다.
Parameters | Type | Description |
---|---|---|
strText | STRING | 변경할 텍스트 |
Type | Description |
---|---|
STRING | 입력한 텍스트의 영문 혹은 한글 문자 |
function btn_on_mouseup(objInst)
{
var txt = "a"
txt = keyboard.getengchar(txt); // 'ㅁ'으로 변경
screen.alert(txt);
txt = keyboard.getengchar(txt); // 다시 'a'로 변경
screen.alert(txt);
}