[Mate][1] is my pick. The first and foremost reason is that it is completely unobtrusive. My application code has no dependencies on the framework, it is highly decoupled, reusable and testable. One of the nicest features of Mate is the declarative configuration, essentially you wire up your application in using tags in what is called an event map -- basically a list of events that your application generates, and what actions to take when they occur. The event map gives a good overview of what your application does. Mate uses Flex' own event mechanism, it does not invent its own like most other frameworks. You can dispatch an event from anywhere in the view hierarchy and have it bubble up to the framework automatically, instead of having to have a direct line, like Cairngorms CairngormEventDispatcher or PureMVC's notification system. Mate also uses a form of dependency injection (leveraging bindings) that makes it possible to connect your models to your views without either one knowing about the other. This is probably the most powerful feature of the framework. In my view none of the other Flex application frameworks come anywhere near Mate. However, these are the contenders and why I consider them to be less useful: PureMVC actively denies you many of the benefits of Flex (for example bindings and event bubbling) in order for the framework to be portable -- a doubious goal in my view. It is also over-engineered, and as invasive as they come. Every single part of your application depends on the framework. However, PureMVC isn't terrible, just not a very good fit for Flex. An alternative is [FlexMVCS][2], an effort to make PureMVC more suitable for Flex (unfortunately there's no documentation yet, just source). Cairngorm is a bundle of anti-patterns that lead to applications that are tightly coupled to global variables. Nuff said (but if you're interested, [here are some more thoughts][3]). [Swiz][4] is a framework inspired by the Spring framework for Java. It is centered around dependency injection and inversion of control (IoC), with extensive use of metadata to enable auto-wiring of dependencies. It is interesting, but perhaps a little too happy on the metadata, and it is a bit invasive. Those are the ones I've tried or researched. There are a few others that I've heard about, but none that I think are widely used. Mate and Swiz were both presented at the recent 360|Flex conference, and there are videos available ([the Mate folks have instructions on how to watch them][5]) [1]: http://mate.asfusion.com/ [2]: http://code.google.com/p/flexmvcs/ [3]: http://blog.iconara.net/2008/04/13/architectural-atrocities-part-x-cairngorms-model-locator-pattern/ [4]: http://code.google.com/p/swizframework [5]: http://mate.asfusion.com/news/360-flex-presentation