动态标签和按钮

发布于 2024-07-26 02:34:36 字数 27 浏览 1 评论 0原文

如何在flex 3中创建动态标签和按钮?

How to create dynamic label and button in flex 3?

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

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

发布评论

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

评论(1

橘虞初梦 2024-08-02 02:34:36
public function yourFunction():void
{
   var tmpLbl:Label = new Label();
   tmpLbl.x = 10;
   tmpLbl.y = 5;
   tmpLbl.text = "Label Text";

   yourObj.addChild(tmpLbl);  // where yourObj is the object you want to add the label to
}

按钮的处理几乎相同,只是按钮文本将使用 btn.Label

设置 要添加 onclick 事件,只需使用

btn.addEventListener(MouseEvent.CLICK, ...
public function yourFunction():void
{
   var tmpLbl:Label = new Label();
   tmpLbl.x = 10;
   tmpLbl.y = 5;
   tmpLbl.text = "Label Text";

   yourObj.addChild(tmpLbl);  // where yourObj is the object you want to add the label to
}

Pretty much the same deal for a button except the buttons text would be set with btn.Label

To add an onclick event just use

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