将 StyleSheet 对象保存到 Flex3 中的 css 文件中
我可以创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
StyleSheet
类的styleNames
数组包含该对象中所有样式的名称。StyleSheet
类还包含一个getStyle
方法,该方法返回与给定样式名称关联的样式对象。我想你可以用这两个来制作一个 CSS 字符串。至于将其保存为css文件,您可以使用FileStream
类来完成。使用 writeUTFBytes 方法。styleNames
array of theStyleSheet
class contains the names of all the styles in that object. TheStyleSheet
class also contains agetStyle
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 theFileStream
class. Use thewriteUTFBytes
method.