在 2 个样式表之间动态 Flex 进行更改

发布于 2024-11-05 10:16:31 字数 193 浏览 0 评论 0原文

我有一个具有两个不同样式表的 Flex 移动项目:

  • theme1.css (包含主题 1 的所有 css)
  • theme2.css (包含主题 2 的所有 css)

该项目一次只需要导入一个样式表。

如何创建一个在两个样式表之间切换并刷新屏幕的按钮?

谢谢 菲尔

I have a Flex mobile project with two different style sheets:

  • theme1.css (Contains all the css for theme 1)
  • theme2.css (Contains all the css for theme 2)

The project needs to import only ONE stylesheet at a time.

How can I create a button that switches between two stylesheets and refreshes the screen?

Thanks
Phil

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

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

发布评论

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

评论(1

狠疯拽 2024-11-12 10:16:31
    switch (this.themeSelected) { 
                case 0: 
                    this.styleManager.loadStyleDeclarations("../light.swf", true);
                    break ; 
                case 1: 
                    this.styleManager.loadStyleDeclarations("../alt.swf", true);
                    break ; 
                case 2: 
                    this.styleManager.loadStyleDeclarations("../dark.swf", true);
                    break ; 
                case 3: 
                    this.styleManager.loadStyleDeclarations("../impaired.swf", true);
                    break ; 

    }

您需要将 css 编译为 swf,方法是右键单击 Flash Builder Burrito 中的文件并检查编译为 SWF 选项

    switch (this.themeSelected) { 
                case 0: 
                    this.styleManager.loadStyleDeclarations("../light.swf", true);
                    break ; 
                case 1: 
                    this.styleManager.loadStyleDeclarations("../alt.swf", true);
                    break ; 
                case 2: 
                    this.styleManager.loadStyleDeclarations("../dark.swf", true);
                    break ; 
                case 3: 
                    this.styleManager.loadStyleDeclarations("../impaired.swf", true);
                    break ; 

    }

You need to compile your css to swf, by rightclicking on the file in Flash Builder Burrito and checking the compile to SWF options

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