> I'm having a brain f*rt. In 1.5 you could do a > Selection.setFous(<textInput id>) from a show attribute for the > container where the TextInput component resided. This would place the > cursor inside the TextInput field > > How is this done in Flex 2.0?
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> <![CDATA[ override protected function childrenCreated():void { input.setFocus(); } ]]> </mx:Script> <mx:TextInput x="27" y="147" id="input"/> </mx:Application> Cheers, Claus. -- claus wahlers cĂ´deazur brasil http://codeazur.com.br -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/flexcoders/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

