Hi - I've got an application where I am using modules. My primary goal is to keep the file size down on the initial main swf.
I've read some help docs that explain how to optimize the module itself. This is easily achieved by setting the optimize for application compiler option. This way the module uses classes compiled into the parent. But I would also like to keep the file size down on the parent main application swf. I have created some interfaces that minimize the classes required by the main to control the module. This seems to be working in the sense that I am not importing any module classes into my main application. However, when I generate a links-report I am still seeing the module classes being compiled into my main application? It appears as though by saying that I want the module to use the main classes - it is also throwing the module classes in there too. Is there some way to specify exactly what classes you want in both the module and the main? How can I tell from the link-report what is being compiled into the module and what is being compiled into the main? Thanks. Peter

