You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "0211003 近藤 健二 (JIRA)" <ji...@apache.org> on 2017/03/15 07:20:41 UTC

[jira] [Updated] (FLEX-35284) Input to TextInput by Japanese IME does not display input characters and binding does not work.

     [ https://issues.apache.org/jira/browse/FLEX-35284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

0211003 近藤 健二 updated FLEX-35284:
---------------------------------

Hello,

Whether the problem occurs

Windows10 / IE -> NG
Windows10 / Chrome -> NG
Windows10 / Firefox -> OK
Windows10 / Edge -> OK (However, the IME window is displayed in the upper left of the screen)

I think it is a problem with Flash Player.
However, I receive the following answers from Adobe 's support.
-----
We did a lot of testing on this issue and found that troubling component is Apache Flex SDK (Made by Apache community) you are using. Since we have no control on SDK made by apache community, we cannot fix this from our side. This is something that has to be raised to Apache.
-----

Regards,



> Input to TextInput by Japanese IME does not display input characters and binding does not work.
> -----------------------------------------------------------------------------------------------
>
>                 Key: FLEX-35284
>                 URL: https://issues.apache.org/jira/browse/FLEX-35284
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Spark: TextInput
>    Affects Versions: Adobe Flex SDK 4.5.1 (Release), Apache Flex 4.15.0
>         Environment: Windows8.1
> Windows10
> IE11
>            Reporter: Kenji Kondo
>            Priority: Critical
>
> In Japanese IME, HIRAGANA input is not displayed.
> When this problem happens, binding doesn't work.
> Full Source Code:
> <?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">
>                    <fx:Declarations>
>                    </fx:Declarations>
>                    <fx:Script>
>                                      <![CDATA[
>                                                         [Bindable]
>                                                         private var testString: String = "";
>                                                         private function onFocusOutHandler(event:FocusEvent):void
>                                                         {
>                                                                            txt3.text = testString;
>                                                         }
>                                      ]]>
>                    </fx:Script>
>                    <s:TextInput id="txt1" x="84" y="54" text="@{this.testString}" focusOut="onFocusOutHandler(event)"/>
>                    <s:TextInput x="84" y="99"/>
>                    <s:TextInput id="txt3" x="84" y="144"/>
> </s:Application>
> Oparation
> 1.Click 1st  TextInput.
> 2.Japanese IME On.
> 3.Press ‘A’ key 3 times and press Enter key .
> 4.Press Tab key , move focus.
> 5.Press ‘I’ key 3 times and press Enter key.
> 6.Press Shift + Tab key , move focus.
> 7.Press ‘U’ key 3 times and press Enter key. <- ISSUE NOT VISIBLE!!
> 8.Press Tab key , move focus.  <- ISSUE NOT UPDATE ‘txt3’.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)