Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get FlashBuilder to show me the command-line output?

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.

like image 622
Brian Genisio Avatar asked Nov 08 '10 16:11

Brian Genisio


People also ask

What is Flash Builder and how does it work?

Flash Builder is a development tool for creating games and web applications using ActionScript and Flex. Flex is the underlying open source framework used to create applications. Learn more in the Flash Builder FAQ.

How do I download and install Adobe Flash Builder?

You can download Flash Builder from the Adobe Flash Builder 4.7 Premium page. You'll need to sign in with your Adobe ID and password to complete the download. For more information, including how to install older versions or check for updates, see Download your creative cloud apps.

What is the command to run a script in command prompt?

Full List of Command Prompt Commands Command Description Cacls The cacls command is used to display or ... Call The call command is used to run a script ... Cd The cd command is the shorthand version ... Certreq The certreq command is used to perform v ... 29 more rows ...

What is the PROMPT command?

The prompt command is used to customize the appearance of the prompt text in Command Prompt or MS-DOS. The prompt command is available in all versions of Windows, as well as in MS-DOS.


2 Answers

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.

like image 150
alxx Avatar answered Sep 18 '22 22:09

alxx


The official answer:

  1. In Flash Builder, select Project > Properties > Flex Compiler

  2. In Additional Compiler Arguments, specify the following argument:

    -dump-config=pathname, where pathname specifies the absolute path to a file on your system.

like image 31
merv Avatar answered Sep 20 '22 22:09

merv