获取文本选择AS3的长度

时间:2012-05-14 18:10:54

标签: actionscript-3

如何获取所选输入文本的长度?

就像,如果文本中选择了2个字符,那么它将返回长度2。

这可能吗?

感谢。

1 个答案:

答案 0 :(得分:3)

使用textfield.selectionBeginIndex和textfield.selectionEndIndex计算当前所选的字符。

var selected:int = field.selectionEndIndex - field.selectionBeginIndex;

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextField.html#selectionBeginIndex