ActionScript 3 将选择设置为文本字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 将选择设置为文本字段相关的知识,希望对你有一定的参考价值。

// To set selection a textfield, use the following;

var _textInput1:TextField = new TextField();
_textInput1.addEventListener(Event.CHANGE, handleTextChange, false, 0, true);

function handleTextChange(event:Event):void {
			
	switch(event.target){				
		case _textInput1:
			trace("input 1");
			if(_textInput1.text.length == 2) {
				stage.focus = _textInput2;
				_textInput2.setSelection(0, _textInput2.text.length); // or second param equals 0 -> 0,0
			}
		break;
		}
	}

以上是关于ActionScript 3 将选择设置为文本字段的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 将CSS添加到Flash文本字段

ActionScript 3.0 - 否则如果是文本字段的条件

需要帮助修复代码以将文本框中的值转换为 ActionScript 3 中的变量

当我们单击选择 2 下拉菜单时,将焦点设置为搜索文本字段

ActionScript 3 自动更改文本大小以适合文本字段

ActionScript 3 查找和更改变量或文本字段中的文本