是否可以根据某些条件在一个类中使用不同的皮肤?
我们正在构建一个使用 mxml 中的皮肤类的应用程序。 我们计划为不同的用户细分构建该应用程序的不同变体,其中大部分功能保持不变,但只有皮肤根据用户细分而有所不同。
我们通过以下语法向应用程序添加皮肤:
<s:BorderContainer id="Banner" height="15%" width="100%" skinClass="mySkins.backgroundSkin"/>
有没有一种方法可以根据某些条件拥有皮肤 即如果 usersegment = "A"
则使用 myskins.backgroundSkin1
,否则使用 myskins.backgroundSkin2
?
We are building an application which is using skin classes in mxml.
We plan to build different variants of this application for different user segments, where most of the functionality remains same but only skins vary based on the user segment.
We are adding skins to the application by the following syntax:
<s:BorderContainer id="Banner" height="15%" width="100%" skinClass="mySkins.backgroundSkin"/>
Is there a way we can have a skin based on some condition
i.e if usersegment = "A"
then use myskins.backgroundSkin1
, else use myskins.backgroundSkin2
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为每个用户段创建一个样式表,在其中定义皮肤类映射。
然后您可以在运行时使用以下命令调用样式表:
Creat a stylesheet for each user segment where you define the skin classes mapping.
Then you can invoke your stylesheet at runtime with :
您还可以使用动作脚本设置皮肤,例如:
You can also set the skin with actionscript like: