更改 AS3 中特定于状态的 mxml 部分

发布于 2024-10-15 08:46:33 字数 192 浏览 6 评论 0原文

我在 MXML 文件中使用类似的内容:

现在我会喜欢在运行时从 as3 更改 state1 文本。

有人有什么建议吗?

谢谢。

I'm using something like this in my MXML file:

<s:label id='mxml_label' text.state1='test' text.state2='test 2' />

Now i would like to change the state1 text from as3 on runtime.

Anyone any suggestions?

thx.

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

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

发布评论

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

评论(1

冷弦 2024-10-22 08:46:33

您可以将 state1 的文本绑定到可绑定字符串变量,然后您可以随时更新该变量。

[Bindable] private var state1TextString:String = "test";

那么你的表情就变成了:

text.state1="{state1TextString}"

You could bind the text for state1 to a bindable string variable that you will then update whenever you want.

[Bindable] private var state1TextString:String = "test";

Then your expression becomes :

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