How do I generate release build of my Flex Application
through IntelliJ Idea, like I do in Flex Builder?
views:
63answers:
2
A:
Does IntelliJ support Ant? Maybe not the answer you're looking for, but you could use the Flex Ant Tasks to build outside of FB.
http://livedocs.adobe.com/flex/3/html/help.html?content=anttasks_1.html
Crusader
2010-08-07 03:46:29
+1
A:
- Right click on any project and select module setting.
- Select tab "Flex compiler setting"
- Last field on this tab is "Additional compiler options:" add "-debug=false" without double quotes to it.
- Do this for all the subprojects. (From this form only you can choose different projects).
- do a project Rebuild and you will get a smaller swf.
Only problem is you need to keep separate project files for debug and release build, but thats ok, as you release builds are done rarely.
Zimbabao
2010-08-25 15:20:51