如何通过动作脚本向组件添加视图状态?

发布于 2025-01-07 18:35:01 字数 454 浏览 0 评论 0原文

我想通过actionscript 添加一些ToggleButton

<s:ToggleButton label="Toggle Button" enabled.viewMode="false" enabled.editMode="true"/>

我这样做是这样的:

var critbtn : ToggleButton = new ToggleButton();
critbtn.label = 'testlabel;
critbtn.enabled.viewMode="false";
critbtn.enabled.editMode="true"
criteriaGroup.addElement(critbtn);

但这行不通。如何使用 actionscript 而不是使用 MXML 添加不同状态的不同启用值?

I want to add a few ToggleButtons through actionscript.

<s:ToggleButton label="Toggle Button" enabled.viewMode="false" enabled.editMode="true"/>

I do this like this:

var critbtn : ToggleButton = new ToggleButton();
critbtn.label = 'testlabel;
critbtn.enabled.viewMode="false";
critbtn.enabled.editMode="true"
criteriaGroup.addElement(critbtn);

but that won't work. How can I add the different enabled values for different States with actionscript and not with MXML?

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

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

发布评论

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

评论(1

So尛奶瓶 2025-01-14 18:35:01

快速回答,不,您不能在动作脚本中添加基于状态的属性。这只是 MXML 的事情。如果您确实想使用 Actionscript 添加组件但想添加基于状态的属性,我建议您使用皮肤。

Quick answer, no, you cannot add state based properties in actionscript. It's an MXML only affair. If you really want to add components with Actionscript but want to add state based properties, I would recommend you use a skin instead.

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