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.
我在用户单击按钮时弹出的图像中有一个标签。
我希望标签已经被“选择”用于键盘输入。当前的实现要求用户在开始键入键盘输入之前单击标签区域内部。
有什么方法可以将标签设置为“选中”并准备好输入,而无需用户单击其中?
将焦点设置在标签字段上:
stage.focus = labelField;
您的标签必须是inputtypemouseEnabled并且selectable设置为true.
input
mouseEnabled
selectable
true