Flash CS3 Documentation |
|||
| ActionScript 2.0 Language Reference > ActionScript classes > IME (System.IME) > ALPHANUMERIC_FULL (IME.ALPHANUMERIC_FULL property) | |||
public static ALPHANUMERIC_FULL : String
A string with the value "ALPHANUMERIC_FULL" for use with setConversionMode() and getConversionMode(). This constant is used with all IMEs.
Availability: ActionScript 1.0; Flash Player 8
The following example sets the IME to ALPHANUMERIC_FULL 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.ALPHANUMERIC_FULL);
trace(System.IME.getConversionMode());
}
setConversionMode (IME.setConversionMode method), getConversionMode (IME.getConversionMode method), hasIME (capabilities.hasIME property)
Flash CS3
Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/flash/9.0/main/00001732.html