feathersui / feathersui-starling

User interface components for Starling Framework and Adobe AIR
https://feathersui.com/learn/as3-starling/
Other
914 stars 386 forks source link

TextArea focus with prompt #1781

Closed denisgl7 closed 5 years ago

denisgl7 commented 5 years ago

If we add a property textArea.prompt = someText , then when hovering over the text, the focus immediately disappears. If you remove the prompt, the text area works fine.

joshtynjala commented 5 years ago

Unfortunately, I cannot reproduce this issue. I tried using every type of text renderer for the prompt, and the focus was not lost on hover.

var textArea:TextArea = new TextArea();
textArea.prompt = "Test test";
this.addChild(textArea);