如何在 AS3 中的空文本字段中设置焦点并插入插入符号
stage.focus = 文本字段;
textField.setSelection(0,0);
不适合我。
stage.focus = textField;
textField.setSelection(0,0);
is not working for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果使用 stage.focus = textField; 后插入符号未显示在文本字段中
只需尝试发布您的电影,而不是使用 CTRL+Enter 命令进行测试。
在我发布它之前它对我不起作用。
-干杯
If the caret is not showing in your text field after using stage.focus = textField;
Simply try publishing your movie instead of testing it with the CTRL+Enter command.
It didn't work for me until I published it.
-Cheers
“textField”是库影片剪辑的子项吗?如果是这样,您必须通过父级访问它。
Is "textField" the child of a library movieclip? If so, you have to access it through the parent.