Actionscript 3.0 TextField 光标在 TextField 上方时发生变化
我的场景有一个 TextField 对象。 我将 TextField 设置为 DynamicText,因为我需要以编程方式更改它。
当鼠标光标位于 TextField 上方时,如何防止鼠标光标更改为 I-Beam 形式? 此外,我的 Flash 应用程序的用户可以使用鼠标光标选择此 TextField 的文本。我也想禁用这种行为。
My scene has a TextField object.
I set up my TextField as DynamicText because I need to change it programmatically.
How do I prevent mouse cursor change to I-Beam form when it's above TextField?
Also, user of my flash application is able to select text of this TextField using mouse cursor. I would like to disable this behavoiur too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在TextField属性面板中,有一个图标显示“Selectable”,您需要取消选中它,然后您将禁用两者。
编辑:该图标位于“Anti-Alias”下拉列表的正下方,第一行。里面有一个Ab(b被选中/突出显示)。
如果您想通过 ActionScript 执行此操作,代码为:
希望这有帮助!
In the TextField properties panel, there is an icon that reads "Selectable", you need to uncheck it, and you will disable both.
EDIT: The icon is right below the "Anti-Alias" drop down, first in row. There is a Ab (the b is selected/highlighted) inside.
If you want to do this by ActionScript, the code is:
Hope this helps!
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextField.html?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6
您正在寻找
可选择
的属性http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextField.html?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6
You are looking for the property
selectable