更改 AS3 中特定于状态的 mxml 部分
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 state1 的文本绑定到可绑定字符串变量,然后您可以随时更新该变量。
那么你的表情就变成了:
You could bind the text for state1 to a bindable string variable that you will then update whenever you want.
Then your expression becomes :