为大量图像设置 Flex / AIR 项目结构?
我们在 Flex 4.5.1 和 AIR 2.7 中构建原型和演示应用程序,供移动和桌面使用。这些往往涉及大量全屏 .PNG 文件。最近,我们一直在寻找对代码进行分段的方法,以实现灵活性和多屏幕重用。
人们对分割项目和库有什么建议,以便最短的编译时间和易于替换的图像?
We build prototypes and demo applications in Flex 4.5.1 and AIR 2.7 for mobile and desktop use. These tend to involve a large number of full-screen .PNG files. Lately we have been looking at ways to segment our code for flexibility and multi-screen re-use.
What suggestions do people have for segmenting the project and libraries such that compile times are minimal and images are easy to replace?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想到了几个策略:
[Embed]
语句外部化到使用 CSS 文件。此选项更可取,因为在运行时加载图像可以为您的多屏幕项目提供更好的灵活性。
或者:
例如:
A couple of strategies pop to mind:
[Embed]
statements, to using a CSS file.This option is preferable, as loading your images at runtime gives you better flexibility in your multi-screen projects.
Alternatively:
eg: