[flexcoders] how to place cursor in textinput

2010-06-17 Thread venkatreddy_006
Hi everyone,

i was setthe focus to the TextInput component, (this is component in login 
window). This highlights my TextInput component, but it is not place
cursor in textinput
Regard's
VenkatReddy s



Re: [flexcoders] how to place cursor in textinput

2010-06-17 Thread Nick Middleweek
Hi,

Assuming your login window is popped up using the PopupManager you can set
the loging window component to implement IFocusManagerContainer.

mx:TitleWindow xmlns:mx=http://www.adobe.com/2006/mxml;
layout=absolute
width=355 height=217
implements=mx.managers.IFocusManagerContainer
creationComplete={init();}
.
.
.
import mx.managers.IFocusManagerContainer;
.
.
.
private function init():void
{
   focusManager.setFocus(login_userName);
}
.
.
.

PopUpManager.createPopUp() :
http://livedocs.adobe.com/flex/3/langref/mx/managers/PopUpManager.html#createPopUp%28%29


Hope that helps...


Nick
-- 
Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, mobile: +44(0)774
035 5424, blog: http://blog.middleweek.co.uk } );



On 17 June 2010 06:34, venkatreddy_006 venkatreddy_...@yahoo.com wrote:



 Hi everyone,

 i was setthe focus to the TextInput component, (this is component in login
 window). This highlights my TextInput component, but it is not place
 cursor in textinput
 Regard's
 VenkatReddy s