从 AS3 创建圆形按钮?
如何创建圆角和圆角 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会使用形状或精灵,并使用图形属性在其上绘图
类似于或使用 Sprite
如果您想在其上附加其他元素(如标签),则
I'd use a Shape or a Sprite, and draw on it using the graphics proerty
something like
or using a Sprite if you want to attach additional elements on it (like a label)
根据 Monkey 的回答,如果使用 Flex 您可以创建非常简单的圆形 按钮 通过设置
cornerRadius
样式。Further to monkee's answer, if using Flex you can create very simple rounded Buttons by setting the
cornerRadius
style.有很多方法可以做到这一点。
如果我是你——如果你只需要一个按钮。 让自己成为一个按钮类。 如果您需要更多布局和 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.