Flex 4 Combo - Using IME

I am trying to use ime (for hiragana login) in flex 4 flex combo. Upon completion, I install the following.

cbx_text.textInput.imeMode = IMEConversionMode.JAPANESE_HIRAGANA;

And check by tracking the following:

trace(cbx_text.textInput.enableIME); returns true;
trace(cbx_text.textInput.imeMode); returns JAPANESE_HIRAGANA;

However, when I select text input and start typing, I cannot switch to hiragana.

I can configure it to work with the textinput component without problems.

<s:TextInput imeMode="JAPANESE_HIRAGANA"></s:TextInput>

Does anyone have any experience? Any insight is greatly appreciated.

+3
source share
2 answers

Although I had no experience with IME, I quickly looked through the documentation: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/system/IME.html

Could this be invalid? Is this possible that returns true only applies to the component you are tracking?

+1

:

, TextInput cbx_text? , , .

IME ? , hiragana ?

IME ? IME.setCompositionString() Windows?

IME? Linux :

  • Capabilities.hasIME
  • IME.enabled <= .

hasIME , ​​ . , - .

, :

+1

All Articles