I have several Flex applications in a project, and I would like to know if there's a way to get a list of the classes (and ideally, other assets) that are being compiled into each one. I want an easy way of making sure I've kept things separate and there aren't unnecessary dependencies. Any ideas? I'm running Flash Builder 4.
A:
What about a grep
through the imports?
$ grep -R 'import ' src/ | awk '{ print $2 }' | sort -u
flash.events.ContextMenuEvent;
flash.events.Event;
...
$
David Wolever
2010-06-15 13:14:36
A:
Change the swf file extension to zip, incompressible and look at the manifest?
David Collie
2010-06-15 22:52:49