"样式'dropShadowVisible'仅受类型“mx.controls.List”支持主题为“火花” Flex 主题警告
我该如何消除 Flex 中的此警告?我正在使用 Halo 主题,不想使用 Spark 主题。
样式“dropShadowVisible”仅受主题为“spark”的类型“mx.controls.List”支持
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
两个选项:
1) 将编译器参数“警告”设置为 false。 有关编译器参数的更多信息位于文档中 。与此相关的其他编译器参数是 show-actionscript-warnings 和 warn-warning_type。
2) 确保您使用的所有类都没有引用 dropShadowVisible 样式。最有可能的是,它是在您的应用程序中使用的 Flex Framework 类内部使用的;所以这可能需要一些扩展。
Two options:
1) Set the compiler argument 'warnings' to false. More info about compiler arguments are in the docs. Other compiler arguments that related to this are show-actionscript-warnings and warn-warning_type.
2) Make sure all the classes you're using do not reference the dropShadowVisible style. Most likely it is used internally be Flex Framework classes that you are using in your app; so that may require some extending.
这篇文章可能会给您一些见解。(我尚未验证那里发布的解决方案)。我建议您在进行更改之前备份提到的framework.swc。这个 bug 在 adobe bug 存储库中提交也有一些信息
This post might give you some insight.(I have not verified the solution posted there).I advise you to take a backup copy of the framework.swc mentioned before you make changes.This bug filed in the adobe bug repository also has some information
每当您在具有 Spark 主题以及 SDK 4.0 或 4.1 的应用程序中使用 mx|List 时,就会出现问题。前面提到的 Adobe bug 已得到修复,该修复在 SDK 4.5 中进行。
The problem arises whenever you use an mx|List, in an app with the Spark theme, and with SDK 4.0 or 4.1. The Adobe bug mentioned earlier has been fixed, and the fix is in SDK 4.5.