flash TextField的插入点(尖号)的位置
TextField中caretIndex属性可以取得插入点(尖号)位置的索引,但是该属性是只读的,那么如我我们想用代码设置插入点(尖号)的位置的话,就可以使用TextField的setSelection方法。确定要放置插入点(尖号)的位置,然后使用setSelection方法来实现。
示例代码中让插入点(尖号)处于TextField对象的末端:
/*
*Jing www.annjing.cn
*添加这句来修改textField中插入点的位置
*
*/
_textField.setSelection(_textField.length+ 1, _textField.length+ 1);
*Jing www.annjing.cn
*添加这句来修改textField中插入点的位置
*
*/
_textField.setSelection(_textField.length+ 1, _textField.length+ 1);
补充:flash教程,动画技术