如何在 Adobe Flex 中根据样式名称获取 UIComponent 集合
有谁知道相当于 javascript getElementsByClassName 的 Actionscript。
我想做的是将自定义“样式名称”添加到各种组件中,然后我可以使用它来获取这些对象的集合,从而处理它们的可见性属性。
我的想法是我想根据登录用户拥有的角色隐藏各种组件 - 我只是想通过将角色名数组添加到自定义属性或在画布或面板等上使用 stylename 属性来使其灵活。
谢谢
Does anyone know an Actionscript equivalent of the javascript getElementsByClassName.
What I would like to do is add a custom 'stylename' to various components which I can then use to get a collection of these objects and therefore process their visibility property.
The idea is I want to hide various components based on what roles a logged in user has - I just want to make this flexible by adding an array of rolenames to a custom property or use the stylename property on a Canvas or Panel etc.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你最好的选择是使用弹性状态。基本状态与子状态中指定的差异。这是 adobe 提供的关于 Flex 状态的精彩教程,假设您使用的是 Flex 3.x : http://www.adobe.com/devnet/flex/quickstart/creating_states/
I think your best bet is to use flex states. A base state with the differences specified in sub states. heres a nice tutorial from adobe on flex states assuming you're using flex 3.x : http://www.adobe.com/devnet/flex/quickstart/creating_states/