Specifically, I want to know what the commands are... all the flags it produces and passes to mxmlc. There must be a way, but I just can't figure it out.

link|improve this question

I don't think there is a way; but you can guess most of the items if you go through the project properties. I think, other than paths, you'll have to specify most arguments yourself. – www.Flextras.com Nov 8 '10 at 19:07
feedback

2 Answers

up vote 5 down vote accepted

Ultimate method - locate mxmlc executable for your platform, then create program with the same name which will log arguments.

If you just want to master mxmlc, there are docs for it and compiler option dump-config: -dump-config=config.xml. Config contains almost everything about the project and I used such config to make an automated build.

link|improve this answer
creative solution. +1 to you! – jeremy.mooer Nov 9 '10 at 0:06
feedback

The official answer:

Add -dump-config=c:\myconf.xml to the Flash Builder commandline options.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.