Hi, when trying to export the release build of an application I get the following error:
"One or more warnings were found while building the release version. You may choose to ignore these warnings"
So, following the advice from another post, in the "Additional Compiler Arguments" part of the project properties, I included a "-warnings=false" statement. I also unchecked "Enable Warnings" to cover bases.
This not only doesn't this remove the warnings from the Problems pane, but it also doesn't prevent the error upon release.
The actual warnings are related to:
"widgets.Search:SearchWidget is a module or application that is directly referenced. This will cause widgets.Search:SearchWidget and all of its dependencies to be linked in with widgets.TOC:TOCWidget. Using an interface is the recommended practice to avoid this."
If I could really just ignore the warnings that would be great, but so far I haven't been able to get a release out. A lot of our code has been customized so using the pre-compiled version is not an option. And while I am OK with actionscript, I have no idea how to go about setting up an "interface."