flex tab 切换焦点

flex 4中tab 切换TextInput焦点需要设置TextInput的3个属性: 

tabEnabled : Boolean 指定此对象是否遵循 Tab 键顺序。
tabIndex : int 指定 SWF 文件中的对象按 Tab 键顺序排列。 
focusEnabled : Boolean 获取或设置一个布尔值,该值指示组件是否可以在用户单击它后获得焦点。


代码:

<s:TextInput id="username" x="67" y="23"  text="" tabEnabled="true" focusEnabled="true" tabIndex="1"/>
		<s:TextInput id="password" x="68" y="60" displayAsPassword="true" text="" tabEnabled="true" focusEnabled="true" tabIndex="2"/>





你可能感兴趣的:(tab,flex4,焦点)