how to place cursor in a text input when user login form comes. I want cursor place in username text input. .Any help is greatly appreciated!
相关问题
- How do I filter out secific nodes of XML?
- Flex getApplicationVersion() always returns null v
- change color row in datagrid
- What overhead is there of using an MXML file in Fl
- flex 3 passing data from modules to parent applica
相关文章
- 可以Maven项目有多个父?(Can maven projects have multiple pa
- 排序Flex中一个ArrayCollection(Sorting an ArrayCollectio
- 滚动到选择的项目在Flex 4中Spark List组件(Scroll to selected it
- 任何Flex 4迁移体验?(Any Flex 4 migration experience?)
- 软硬度:错误#2038:文件I / O错误[关闭](Flex: Error #2038: File
- 它是可行的使用Flex创建REST客户端?(Is it feasible to create a R
- AS3:导出一个MovieClip或画布SWF(AS3: Export a MovieClip or
- 如何工作的自定义MXML组件registerClassAlias()方法(how to work r
Where XXX is the name of the swf file.
ON Adobe forum, solution is provider for almost same issue please ck
How to move the cursor in a text input programatically
Hopes that helps
You can't manually move the mouse cursor, however, you can always set the focus on the TextInput after your form is complete:
To go along with J_A_X's answer, if you're trying to set focus on a component when the application first loads, you'll also need to use some javascript to set the focus on your SWF.
Here's the sample code from that article:
The Javascript:
The ActionScript: