tags:

views:

642

answers:

1

I am using the link-report option in Flex Builder 3 to try to track down dependencies in my Flex application's modules.

However a different report is generated for each module and they all use the same filename so they end up overwriting each other!

Is there a way to generate separate files for each module - without having to create a filewatcher to copy them each as they are generated!

I am using the following command line arguments :

-locale en_US -link-report=linkreport.xml -optimize

Ideally I'd like something like -locale en_US -link-report=linkreport_%MODULE%.xml -optimize but i dont know if that is possible?

A: 

I think you are using dependent modules . If you use independent modules then they will have there own classes and do not share with the main application and that may give you the desired results .

Bryson