[ https://issues.apache.org/jira/browse/FLEX-35399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16823760#comment-16823760 ]
sunil kumar reddy commented on FLEX-35399: ------------------------------------------ Hi Alex, We cannot attach the full project,so please find the as code which we used: package { import flash.display.Sprite; import flash.events.Event; import flash.external.ExternalInterface; import flash.text.TextField; import flash.text.TextFieldType; public class TextAreaTest extends Sprite { private var textField:TextField = new TextField(); public function TextAreaTest() { this.textField.visible = true; this.textField.text = 'this is a text field'; textField.width = 150; textField.height = 30; textField.border = true; textField.background = true; textField.type = TextFieldType.INPUT; this.addChild(this.textField); this.textField.addEventListener(Event.CHANGE, function(e:Event):void { flash.external.ExternalInterface.call('console.log', 'Event ---> ' + e.toString()); }); } } } > In Firefox 45+ browsers,when we use sogou chinese keyboard input method and > enter characters in flex input field,characters are getting repeated > ------------------------------------------------------------------------------------------------------------------------------------------------ > > Key: FLEX-35399 > URL: https://issues.apache.org/jira/browse/FLEX-35399 > Project: Apache Flex > Issue Type: Bug > Components: FlexJS > Affects Versions: Apache Flex 4.16.1 > Environment: Windows 7 > Firefox 45+ browsers > Sogou keyboard input > Reporter: sunil kumar reddy > Priority: Minor > > Environment Details:Windows 7 machine, > Browser:Firefox 45+ > Steps: > Sogou chinese input keyboard method is enabled. > In flex input field,enter the characters using Sogou chinese input keyboard. > Issue:Characters are getting repeated in flex input field. > If Sogou input keyboard is enabled english,it is ok. > Flex input field code: > <mx:TextInput id='input'> > > </mx:TextInput> -- This message was sent by Atlassian JIRA (v7.6.3#76005)