将光标设置为影片剪辑上的指针

发布于 2024-12-01 00:24:20 字数 235 浏览 2 评论 0原文

当我将动画片段悬停在舞台上时,我想将光标更改为指针。 我尝试这个

MovieClip(this.myContainer.myStage.getChildAt(i)).buttonMode=true;
MovieClip(this.myContainer.myStage.getChildAt(i)).useHandCursor=true;

但这没有帮助...任何人都可以提出任何建议吗?

I want to change cursor to pointer when I hover movieclip in the stage.
I try this

MovieClip(this.myContainer.myStage.getChildAt(i)).buttonMode=true;
MovieClip(this.myContainer.myStage.getChildAt(i)).useHandCursor=true;

But it's doesn't help... Can anyone suggest anything?

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

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

发布评论

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

评论(2

忱杏 2024-12-08 00:24:20
MovieClip(myContainer.myStage.getChildByName("myChild"+i)).buttonMode=true;
MovieClip(myContainer.myStage.getChildByName("myChild"+i)).buttonMode=true;
囚你心 2024-12-08 00:24:20

我找到了解决方案

[Embed(source='../assets/hand_cursor.png')]
private var _handIcon:Class;

然后我使用

this.myContainer.cursorManager.setCursor(_handIcon,2,-3);

它工作正常)))

I find solution for it

[Embed(source='../assets/hand_cursor.png')]
private var _handIcon:Class;

And then I use

this.myContainer.cursorManager.setCursor(_handIcon,2,-3);

And it works fine)))

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