EasyManua.ls Logo

MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE - Japanese_Katakana_Half; (IME.JAPANESE_KATAKANA_HALF Property); KOREAN (IME.KOREAN Property)

MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE
1378 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
IME (System.IME) 663
JAPANESE_KATAKANA_HALF
(IME.JAPANESE_KATAKANA_HALF property)
public static JAPANESE_KATAKANA_HALF : String
A string with the value "JAPANESE_KATAKANA_HALF" for use with setConversionMode()
and
getConversionMode(). This constant is used with Japanese IMEs.
Availability: ActionScript 1.0; Flash Player 8
Example
The following example sets the IME to
JAPANESE_KATAKANA_HALF if the system has an Input
Method Editor (IME) installed (
System.capabilities.hasIME).
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), getConversionMode
(IME.getConversionMode method)
KOREAN (IME.KOREAN property)
public static KOREAN : String
A string with the value "KOREAN" for use with setConversionMode() and
getConversionMode(). This constant is used with Korean IMEs.
Availability: ActionScript 1.0; Flash Player 8
Example
The following example sets the IME to
KOREAN if the system has an Input Method Editor
(IME) installed (
System.capabilities.hasIME).
if(System.capabilities.hasIME) {
trace(System.IME.getConversionMode());
System.IME.setConversionMode(System.IME.KOREAN);
trace(System.IME.getConversionMode());
}

Table of Contents

Related product manuals