CHINESE (IME.CHINESE property)
public static CHINESE : 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.CHINESE);
trace(System.IME.getConversionMode());
}
See also
setConversionMode (IME.setConversionMode method)
(IME.getConversionMode method)
doConversion (IME.doConversion method)
public static doConversion() : Boolean
Instructs the IME to select the first candidate for the current composition string.
Availability: ActionScript 1.0; Flash Player 8
Returns
- Returns
Boolean
true
Example
The following example shows how to select the first candidate for the IME composition
string. If the user's system has IME, clicking in the text field selects the candidate.
var mc:MovieClip = this.createEmptyMovieClip("mc",
this.getNextHighestDepth());
mc.createTextField("txt", this.getNextHighestDepth(), 0, 0, 0, 0);
mc.txt.border = true;
mc.txt.background = true;
mc.txt.autoSize = "left";
mc.txt.text = "Set this text as the composition string and convert it.";
for use with
"CHINESE"
. This constant is used with simplified and traditional Chinese IMEs.
CHINESE
if the call is successful; otherwise
setConversionMode()
if the system has an Input Method Editor
).
,
getConversionMode
.
false
and
IME (System.IME)
659
Need help?
Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?