[ 
https://issues.apache.org/jira/browse/FLEX-33366?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13564058#comment-13564058
 ] 

Alex Harui commented on FLEX-33366:
-----------------------------------

I still cannot reproduce this problem.  Please go to 
http://flashplayerversion.com/ and tell me what it says.

Here is a test case for you to try:

<?xml version="1.0" encoding="utf-8"?> 
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"; 
                           xmlns:s="library://ns.adobe.com/flex/spark" 
                           xmlns:mx="library://ns.adobe.com/flex/mx" 
minWidth="955" minHeight="600" xmlns:local="*"> 
        <fx:Declarations> 
                <!-- 将非可视元素(例如服务、值对象)放在此处 --> 
        </fx:Declarations> 
        <s:TextInput/> 
        <local:MySparkTextInput top="200" left="200" 
skinClass="spark.skins.mobile.TextInputSkin"/> 
        <mx:TextArea top="400" left="400"/> 
</s:Application> 

Where MySparkTextInput.as looks like this:

package
{
        import spark.components.TextInput;
        
        public class MySparkTextInput extends TextInput
        {
                public function MySparkTextInput()
                {
                        super();
                }
                
                override public function get enableIME():Boolean
                {
                        return true;
                }
        }
}

I had to add the mobile/mobilecomponents.swc to the project's library path and 
added frameworks/projects/mobiletheme/mobile/src to the project's source-path.

                
> The candidate input method can not follow
> -----------------------------------------
>
>                 Key: FLEX-33366
>                 URL: https://issues.apache.org/jira/browse/FLEX-33366
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Spark: TextArea, Spark: TextInput
>    Affects Versions: Apache Flex 4.8 (parity release)
>         Environment: windows,IE8
>            Reporter: zy
>
> The spark:TextArea and TextInput  Chinese candidate input method can not 
> follow.
> But mx:TextArea and TextInput not this issue.
> I guess you only test the English input method, Chinese input methods all 
> have this problem, it is affecting the user experience.
> you can test this Chinese input method.all chinese use this.
> http://dl_dir.qq.com/invc/qqpinyin/QQPinyin_Setup_1.1.1224.400.exe
> I made a picture to illustrate the problem.
> http://img.my.csdn.net/uploads/201301/24/1359028348_2400.jpg
> If you are unclear, please let me know. I don't know english.I am very sorry.
> Thank you!

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to