User Guide

IME (System.IME) 661
See also
ALPHANUMERIC_FULL (IME.ALPHANUMERIC_FULL property), ALPHANUMERIC_HALF
(IME.ALPHANUMERIC_HALF property)
, CHINESE (IME.CHINESE property),
JAPANESE_HIRAGANA (IME.JAPANESE_HIRAGANA property), JAPANESE_KATAKANA_FULL
(IME.JAPANESE_KATAKANA_FULL property)
, JAPANESE_KATAKANA_HALF
(IME.JAPANESE_KATAKANA_HALF property)
, KOREAN (IME.KOREAN property), UNKNOWN
(IME.UNKNOWN property)
getEnabled (IME.getEnabled method)
public static getEnabled() : Boolean
Indicates whether the system IME is enabled. An enabled IME performs multibyte input; a
disabled IME performs alphanumeric input.
Availability: ActionScript 1.0; Flash Player 8
Returns
Boolean - Returns true if the system IME is enabled, false if it is disabled.
Example
The following example checks to see whether IME is enabled by calling the
isEnabled()
method.
if(System.capabilities.hasIME) {
var isImeEnabled:Boolean = System.IME.getEnabled();
trace(isImeEnabled);
}
JAPANESE_HIRAGANA
(IME.JAPANESE_HIRAGANA property)
public static JAPANESE_HIRAGANA : String
A string with the value "JAPANESE_HIRAGANA" for use with setConversionMode() and
getConversionMode(). This constant is used with Japanese IMEs.
Availability: ActionScript 1.0; Flash Player 8