JAPANESE_KATAKANA_HALF
(IME.JAPANESE_KATAKANA_HALF property)
public static JAPANESE_KATAKANA_HALF : String
A string with the value
and
getConversionMode()
Availability: ActionScript 1.0; Flash Player 8
Example
The following example sets the IME to
Method Editor (IME) installed (
if(System.capabilities.hasIME) {
trace(System.IME.getConversionMode());
System.IME.setConversionMode(System.IME.JAPANESE_KATAKANA_HALF);
trace(System.IME.getConversionMode());
}
See also
setConversionMode (IME.setConversionMode method)
(IME.getConversionMode method)
KOREAN (IME.KOREAN property)
public static KOREAN : String
A string with the value
getConversionMode()
Availability: ActionScript 1.0; Flash Player 8
Example
The following example sets the IME to
(IME) installed (
System.capabilities.hasIME
if(System.capabilities.hasIME) {
trace(System.IME.getConversionMode());
System.IME.setConversionMode(System.IME.KOREAN);
trace(System.IME.getConversionMode());
}
"JAPANESE_KATAKANA_HALF"
. This constant is used with Japanese IMEs.
JAPANESE_KATAKANA_HALF
System.capabilities.hasIME
for use with
"KOREAN"
. This constant is used with Korean IMEs.
KOREAN
for use with
setConversionMode()
).
,
getConversionMode
setConversionMode()
if the system has an Input Method Editor
).
if the system has an Input
and
IME (System.IME)
663
Need help?
Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?