FDT Featured In Automating ActionScript Projects
Author and FDT fan Sidney de Koning has just completed a new book titled ‘Automating ActionScript Projects With Eclipse and Ant‘. It’s a short and sweet book that gives a nice introduction for anyone interested in integrating Eclipse & Ant into their Flash workflow. In this book, you’ll find various powerful Ant scripts as well [...]
@Lennart
Do you mean auto attach the sources? Or to use a the sources instead of a .SWC?
For auto attach, we can’t guarantee the location of where the sources of a .SWC are located, or if a code base has been altered (e.g. Monkey patching the Flex SDK).
For using sources over a .SWC, .SWCs are always preferable over using source code directly. This is for 3 big reasons:
1) Faster compilation of projects
2) Less memory / faster performance of FDT (FDT doesn’t need to scan the source code in SWCs for errors)
3) Better for versioning. If you are using a few large libraries, you can easily add 100 of extra files for your versioning system to track.
And why not use the sources in the first place?