vote up 3 vote down star
2

How can I prevent mouse selecting (and moving caret) with Editable TextField(), this one does not seem to fully work when SELECTING text, but it prevents clicking. I want to keep cursor in place where its going.

protected function handleMouseDEvent(evt:MouseEvent):void {
if (evt.type == MouseEvent.MOUSE_DOWN) {
var max : int;
max = this.text.length;
this.setSelection(max, max) // SET CURSOR POSITION  
}
}
flag

77% accept rate
Sorry to just follow a question with a question, but why would you want this behaviour? – Dan Vinton Feb 23 at 16:40
Yeah, if you tell us what your end goal is we might have better suggestions. This will be a bit of a hack regardless how you go about it, so there might be better ways of doing it. – grapefrukt Jun 11 at 10:02

3 Answers

vote up 0 vote down check

How about selectable="false"?

link|flag
not a preferred option, I like to show the cursor on screen – Tom Feb 23 at 10:05
vote up 0 vote down

Have you tried programmatically switching the textfield from input to dynamic?

link|flag
I like to keep it editable "INPUT BOX" – Tom Mar 5 at 11:07
How can it be editable but always have the cursor at the end of the text field? – Greg B May 27 at 13:41
vote up 0 vote down

whenever the user has focus the textfield, put a transparent button on top of the text field , set the button to not using handCursor

and once the user is not focusing the text field, remove the transparent button

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.