RE: [flexcoders] setFocus() problem.

2005-12-01 Thread Doodi, Hari - BLS CTR
, November 30, 2005 4:13 PM Subject: RE: [flexcoders] setFocus() problem. Selection.setSelection(len,len) is not working for me. I am attaching my test mxml for your ref. please help me. I would like to know how to get ride off the highlight and place the curser at the end of the text

RE: [flexcoders] setFocus() problem.

2005-11-30 Thread Doodi, Hari - BLS CTR
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Monday, November 28, 2005 3:42 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] setFocus() problem. Try: this.tobdetail_ti.setFocus(); var len:Number = this.tobdetail_ti.text.length

Re: [flexcoders] setFocus() problem.

2005-11-30 Thread JesterXL
s, "setSelectionLater", [2, 3]);} function setSelectionLater(startIndex, endIndex){Selection.setSelection(startIndex, endIndex);} - Original Message - From: Doodi, Hari - BLS CTR To: flexcoders@yahoogroups.com Sent: Wednesday, November 30, 2005 4:13 PM Subj

Re: [flexcoders] setFocus() problem.

2005-11-28 Thread JesterXL
Try: this.tobdetail_ti.setFocus(); var len:Number = this.tobdetail_ti.text.length; Selection.setSelection(len, len); - Original Message - From: Doodi, Hari - BLS CTR To: flexcoders@yahoogroups.com Sent: Monday, November 28, 2005 3:33 PM Subject: [flexcoders] setFocus() problem.

RE: [flexcoders] setFocus() problem.

2005-11-28 Thread Doodi, Hari - BLS CTR
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] setFocus() problem. Try: this.tobdetail_ti.setFocus(); var len:Number = this.tobdetail_ti.text.length; Selection.setSelection(len, len); - Original Message - From: Doodi, Hari - BLS CTR To: flexcoders

Re: [flexcoders] setFocus() problem.

2005-11-28 Thread JesterXL
cus, but I bet it does this: Selection.setSelection(0, theText.lenght);' - Original Message - From: Doodi, Hari - BLS CTR To: flexcoders@yahoogroups.com Sent: Monday, November 28, 2005 3:45 PM Subject: RE: [flexcoders] setFocus() problem. Thank you very much for the in