从 AS3 创建圆形按钮?

发布于 2024-07-14 00:03:32 字数 69 浏览 2 评论 0原文

如何创建圆角和圆角 AS3 的“确定”和“取消”按钮好看吗?

我不想为这些使用任何图像,只需绘制它们?

How to create rounded & good looking "OK" and "CANCEL" buttons from AS3 ?

I dont want to use any images for these, just draw them?

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

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

发布评论

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

评论(3

醉梦枕江山 2024-07-21 00:03:32

我会使用形状或精灵,并使用图形属性在其上绘图
类似于或使用 Sprite

var s:Shape = new Shape();
s.graphics.beginFill(0x123123, 1);
s.graphics.drawRoundRect(...);
s.graphics.endFill();

如果您想在其上附加其他元素(如标签),则

I'd use a Shape or a Sprite, and draw on it using the graphics proerty
something like

var s:Shape = new Shape();
s.graphics.beginFill(0x123123, 1);
s.graphics.drawRoundRect(...);
s.graphics.endFill();

or using a Sprite if you want to attach additional elements on it (like a label)

拥抱没勇气 2024-07-21 00:03:32

根据 Monkey 的回答,如果使用 Flex 您可以创建非常简单的圆形 按钮 通过设置 cornerRadius 样式。

Further to monkee's answer, if using Flex you can create very simple rounded Buttons by setting the cornerRadius style.

甜嗑 2024-07-21 00:03:32

有很多方法可以做到这一点。

如果我是你——如果你只需要一个按钮。 让自己成为一个按钮类。 如果您需要更多布局和 GUI 元素,请考虑使用 Flex 框架 或类似 ASwing

在 Flex 中可以学习 如何为组件换肤 或自己操作。 只需创建一个画布、盒子、标签或任何带有图片的东西,并使其表现得像一个按钮。

There are many ways to do that.

If I were you - if a button is all you need. Make yourself a button class. If you need more Layout & GUI elements, consider using the Flex Framework or something like ASwing

In Flex either learn how to skin a component or do it yourself. Just create a canvas, box, label or whatever with a picture in it and make it behave like a button.

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