避免 Flash CS3 中的动态文本字段上的光标发生变化

发布于 2024-07-14 08:16:22 字数 133 浏览 5 评论 0原文

我在 MovieClip 符号内有一个动态文本字段。 每当鼠标指针悬停在符号上时,光标就会变为 I 形文本编辑光标。 这可能是一个非常愚蠢的问题,但是有什么办法可以避免这种情况呢? 即使使用 mouse.hide() 也无法阻止“I”光标的出现。

I have a dynamic text field inside a MovieClip symbol. Whenever the mouse pointer is hovered over the symbol, the cursor changes to the I-shaped text editing cursor. This may be a very stupid question, but is there any way to avoid this? Not even using mouse.hide() keeps the "I" cursor from appearing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

清晨说晚安 2024-07-21 08:16:22

您是否尝试过将 TextField 的 selectable 属性设置为 false ? 这将防止用户拖动鼠标来选择文本(因此他们无法将其复制到剪贴板),但我相信这也应该防止光标发生变化。

Have you tried setting the TextField's selectable property to false? This will prevent the user from dragging the mouse to select the text (thus they can't copy it to the clipboard), but I believe that should also prevent the cursor from changing.

mc.selectable = false;

mc.selectable = false;

风追烟花雨 2024-07-21 08:16:22

对于 CS4:在属性框中有一个图标(小按钮),当您选择文本字段时可用,您可以打开和关闭该图标以确定文本是否可选。 该按钮位于属性框中的抗锯齿下方。

For CS4: In the properties box is an icon(little button) that is available when you have the text field selected, which you can toggle on and off to determine if the text is selectable. This button is located below anti-alias in the properties box.

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