
FDT
Comparing to Flash Builder, FDT offers users new way of coding.Its quick fix feature allows you to code at speed of light, every aspect of IDE is customizable, apparat is natively supported, project templates allows you to reuse your favorite project organization and settings.FDT is more open to the community, bug fixes are carefully chosen from the ones that really matters to the developer and release cycle seems to be shorten comparing to Flash Builder.Android and IOS development is next target also with FDT team and more improvements can be expected.While there are so many great stuff there are also downsides and additional steps for configuration. While Flash Builder automatically detects source code of Flex framework, FDT offers same functionality but with one additional step (create linked resource)
It is quite simple, all you have to do is:
1.Create linked resource pointing to your Flex SDK
Window->Preferences->General->Workspace->Linked Resources
2.Add linked resource to your .project file
<linkedResources>
<link>
<name>FLEX_SDK</name>
<type>2</type>
<locationURI>FLEX_SDK</locationURI>
</link>
</linkedResources>
* FLEX_SDK is the name of the linked resource
Clean your project and voila you can step through Flex source code when debugging your application.
Tags: fdt, flex