ActionScript 2.0 Language Reference |
|
|
|
| ActionScript classes > IME (System.IME) > UNKNOWN (IME.UNKNOWN property) | |||
public static UNKNOWN : String
A string with the value "UNKNOWN" for use with getConversionMode(). This constant is used with all IMEs.
Availability: ActionScript 1.0; Flash Player 8
The following example sets the IME to UNKNOWN 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.UNKNOWN);
trace(System.IME.getConversionMode());
}
getConversionMode (IME.getConversionMode method)
|
|
|
|