Actionscript 3.0 TextField 光标在 TextField 上方时发生变化

发布于 2024-12-09 05:01:11 字数 181 浏览 0 评论 0原文

我的场景有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

护你周全 2024-12-16 05:01:11

在TextField属性面板中,有一个图标显示“Selectable”,您需要取消选中它,然后您将禁用两者。

编辑:该图标位于“Anti-Alias”下拉列表的正下方,第一行。里面有一个Ab(b被选中/突出显示)。

如果您想通过 ActionScript 执行此操作,代码为:

myTextField.selectable = false;

希望这有帮助!

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:

myTextField.selectable = false;

Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文