将 StyleSheet 对象保存到 Flex3 中的 css 文件中

发布于 2024-08-07 01:32:57 字数 141 浏览 1 评论 0原文

我可以创建 StyleSheet 对象,我需要将该 StyleSheet 对象保存到 css 文件(以 css 格式)。

我该如何在 flex3 Air 应用程序中执行操作,是否有任何内置库?或可保存为 *.css 文件的链接

提前致谢

i can able to create StyleSheet object , i need to save that StyleSheet object to css file(in the css format).

how can i do in flex3 Air application , is there any build in library ? Or links available to save as *.css file

Thanks in advance

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

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

发布评论

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

评论(1

听,心雨的声音 2024-08-14 01:32:57

StyleSheet 类的 styleNames 数组包含该对象中所有样式的名称。 StyleSheet 类还包含一个 getStyle 方法,该方法返回与给定样式名称关联的样式对象。我想你可以用这两个来制作一个 CSS 字符串。至于将其保存为css文件,您可以使用FileStream类来完成。使用 writeUTFBytes 方法。

styleNames array of the StyleSheet class contains the names of all the styles in that object. The StyleSheet class also contains a getStyle method that returns a style object associated with a given style name. I guess you can make a CSS string using these two. As for saving it as css file, you can do it with the FileStream class. Use the writeUTFBytes method.

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