views:

239

answers:

7

I need to familiarize myself with this technology. My problem is that Google is swamp with results for tutorials. Where should I start?
What development environment should I use assuming this is only for learning purposes and I don't want at the moment to buy any expensive software?
What tools should I use?
Any road maps for dummies?

+1  A: 
Byron Whitlock
+3  A: 

Flex Builder has a 60 day free trial so that should be enough time to get you started. After that you can use the Open Source Flex SDK. To learn Flex you can check out First Steps in Flex which is a short book Bruce Eckel and I co-authored. We have also posted some screencasts that walk through the code examples in the book.

James Ward
+2  A: 

Adobe's "Flex in a Week" video training is a great place to start learning.

gkj4444
Really great resourse
TandemAdam
+1  A: 

FlashDevelop is a decent free IDE which works with the free Flex SDK (free commandline compiler from Adobe)

davr
+4  A: 

I really think that "learning Flex" is a mistake. Focusing up on core Actionscript 3 skills is essential to long term success with the Flex framework. You will find that you rapidly hit a wall where "knowing Flex" without the underlying language core will be an extreme disadvantage. If you have prior experience with a statically typed language, the AS3 shouldn't be difficult. All of Flex is written in AS3, and analyzing the underlying codebase is the best way I have found to learn the framework.

Essential Actionscript 3 is the best place to start down that path.

Joel Hooks
Well, to become effective with _any_ language, you need to learn the language as well as the libraries/frameworks available, but this is a good reminder none the less.
Joe Internet
+1 So I have to start with AS3? am I correct?
Itay Moav
By all means play around with Flex, *all* of Flex is written in AS3, so to gain a proper working knowledge you need to understand the language. The default Flex components are great, but the real power comes when you can extend and create your own.
Joel Hooks
+1  A: 

There is a series from O'Reilly (insideria.com) called LFFS - Learn Flex from Scratch - that is pretty good. There are currently 12 lessons - each building on the previous.

http://www.insideria.com/2008/02/lffs1-meet-the-authors-meet-fl.html

daniel.reicher
A: 

I like the book Flex 3 from the Source. After you have a little bit of context for Flex, check out the Flex Examples blog.

Hooray Im Helping