how can I strip trace() messages from a flex and flash applications ?
I write flash and flex applications and i use a lot of trace messages for debugging, but when i product the actual swf i want it to be stripped from any trace messages.
thanks
|
|
If you export a release build, it won't include the trace statements. I recommend doing this, rather than releasing debug builds, as the compiler will also strip all the debug information, leaving you with a substantially smaller file. |
|||||
|
|
Use conditional compilation : http://edsyrett.wordpress.com/2008/09/22/using-conditional-compilation-to-detect-debug-mode/ |
|||
|
|
|
I believe the Publisher has a "Omit Trace Actions" option on the "Publisher Options " menu. |
|||
|
|
|
A release-build will not omit trace statements! To omit trace statements in the Flash builder environment: Place in your flex compiler arguments.
On release build the compiled swf should exclude trace statements. IMPORTANT In order to have trace statements in the future, you have change the compiler settings back and restart Flash Builder. |
|||
|
|
|
Just spent some time searching how to omit trace messages in a My problem was that I successfully omitted trace messages of my Flash Builder projects, but the trace messages from my embedded swc still popped up. For Flash Builder projects I'm using in ANT:
But the
So to omit trace output coming from swc libraries, don't forget to set |
|||
|
|