Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
選択した入力テキストの長さ番号を取得するにはどうすればよいですか?
たとえば、テキストで2文字が選択されている場合、長さ2が返されます。
それは可能ですか?
ありがとう。
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