I'm using the reflection classes of Flex and I've notice when I publish in debug all of a components style metadata is found by describeType. But if I create a release build none of the styles show up.

有帮助吗?

解决方案

You can add metadata into a release build using the compiler argument keep-as-metadata. The default Flex configuration probably doesn't include the style metadata because it is not used at runtime.

This compiler argument will keep the style metadata in there when creating a release build:

keep-as3-metadata+=Style
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top