如何将 -fteInMXComponents 编译器选项与 flexmojos 结合使用
使用 flexmojos 编译 Flex 4 应用程序时,如何指定 -fteInMXComponents(在 MX 组件中使用 Flash 文本引擎)选项?还是我不能?
When compiling a Flex 4 app with flexmojos, how do I specify the -fteInMXComponents (use Flash text engine in MX components) option? Or can I not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个解决方案...
首先,您不能指定该选项,但您可以设置代码来执行相同的操作。您所要做的就是从 SDK 中获取文件 MXFTEText.css 的副本并将其放入您的项目中,然后将其作为样式表包含在内:
这将实现与 -fteInMXComponents 完全相同的效果。
Here's a solution...
Firstly, you can't specify that option, but you can set up your code to do the same thing. All you have to do is take a copy of the file MXFTEText.css from the SDK and put it in your project, then include it as a style sheet:
This will achieve exactly the same thing as -fteInMXComponents.