입력한 텍스트의 대체 문자를 반환한다.
Parameters | Type | Description |
---|---|---|
strText | STRING | 변경할 텍스트 |
Type | Description |
---|---|
STRING | 입력한 텍스트의 대체 문자 |
function btn_on_mouseup(objInst)
{
var txt = "1"
txt = keyboard.getshiftchar(txt); // '!'로 변경
screen.alert(txt);
txt = keyboard.getshiftchar(txt); // 다시 '1'로 변경
screen.alert(txt);
}