FLEX无法输入中文
当FLEX嵌入网页内,我们发现有些输入框不能切换输入法,不能输入中文的情况。
解决办法:
private function setSRF(event:MouseEvent):void{ if(Capabilities.hasIME){ try{ if(!IME.enabled){ IME.enabled=true; } IME.conversionMode="CHINESE"; }catch(error:Error){} } }
this.addEventListener(MouseEvent.ROLL_OUT, setSRF);
转载:http://www.myexception.cn/flex/603049.html