Timo Koro

Results 34 comments of Timo Koro

Are you able to reproduce it? I'm getting it every single time, with just one TextInput on stage, focusing on it and closing the window, with AIR 23 and 24....

Right, I thought it was an occasional error for you, something not easily reproduced. Thanks anyways! :)

True, when the input is focused, the values are correct. But listen to the change event and run on iOS.

Here's my input: ``` var input:TextInput = new TextInput(); input.text = "Sample Text"; input.textEditorProperties.fontSize = 30; input.width = 300; input.height = 100; input.move(100, 100); input.addEventListener(FeathersEventType.FOCUS_IN, function(event:Event):void { trace("FOCUS_IN", input.text, input.selectionBeginIndex,...

Interesting... Hope they'll add it on their to-do list!

You mean something like this? ```actionscript function onButtonTriggered(event:Event):void { textInput.textEditorProperties.maintainTouchFocus = false; textInput.clearFocus(); } ``` Didn't help, unfortunately. The `mouseFocusChange` doesn't get dispatched when the focus is cleared programmatically or...

I'm returning to this issue with reproduceable (on Nexus 5 (6.0.1) and an old Galaxy Tab (4.4.2), but NOT on Nexus S (4.1.2)) code. It seems like the issue doesn't...

Moving the input by a pixel when setting the focus is enough to make it visible again: ```actionscript function onInputEnterPress(event:Event):void { var inputField:TextInput = event.target as TextInput; if(inputField == textInput1)...

Clearing the focus doesn't seem to help over here...

Just mentioning if anyone else runs into the same issue. The previous idea of clearing the focus before re-assigning it seems to actually yield into another problem. In my actual...