actionscript 3 - Determining linkage dependencies in Flex applications -


There is a big flex project with two of my applications. Many codes are shared between these applications, however, Smaller code is not required which is big, I'm trying to ensure that the code that is not required by small applications is not being compiled into it.

Is it an easy way to determine which files are being compiled in my project, a special application?

Ah, I managed to find a solution immediately after posting it.

The Flex compiler supports a one-link-report flag that creates an XML file that describes all the link dependency for the application in your project.

FLEX2 documentation:

FLEX 3 documentation:


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -