Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do I need Flex Builder?

I am completely new to Flex.

Can I realistically develop, say, a medium complex application with the Flex SDK alone, or do I need Flex Builder?

Also, apart from the SDK, what will I need to get started?

Thanks for any help.

like image 992
Galwegian Avatar asked Jan 21 '09 17:01

Galwegian


3 Answers

I was there a year or two ago, so here's my experience. In order by subquestion:

I am completely new to Flex.

I was new to Flex too - and Actionscript (although it's a superset of javascript, which I know pretty well; although it sure doesn't feel like javascript to me).

Can I realistically develop, say a medium complex application with the Flex SDK alone, or do I need Flex Builder?

Maybe, if you already know Flash and Actionscript pretty well. I didn't, so I found it sure helped. But it isn't any different from any other IDE-or-not decision.

Also, apart from the SDK, what will I need to get started?

Nothing, unless you want to use AIR, which is only a simple download. Everything else is in there. I was completely happy with my experience; no unpleasant surprises, and you're asking the same questions I did. YMMV.

like image 126
dkretz Avatar answered Nov 11 '22 02:11

dkretz


You don't need it, but it can be helpful.

I've found FlashDevelop to be a much better IDE for coding ActionScript. It ties in with the (free) Flex SDK, so as long as you don't mind coding the MXML by hand then it should work great. I've created a number of smaller Flex apps using this, and it's worked great. I generally shy away from graphical GUI designers anyway, so it worked quite well for me.

FlexBuilder gets you two things that (afaik) you can't get elsewhere. A visual designer for the MXML, and a debugger. If you get the more expensive version of Flex Builder you also get a profiler.

The visual designer is good if you want to quickly prototype something, or if you're used to designing UI stuff that way (and I can see where it would be helpful once you start getting into more complex UI stuff).

The Flex SDK comes with a command line debug tool, but the GUI you get with FlexBuilder makes using it a lot easier. This is what made getting FlexBuilder worth it for me. I generally don't use FlexBuilder for everyday development, but when I need to debug it makes things much easier.

If you're the one who would have to pay for FlexBuilder, try it without FlexBuilder. If you start running into a situation where you feel having the graphical designer or debugger GUI would be helpful, grab the FlexBuilder trial. You'll have 30 days to try it out. If it helps you enough that you think it's worth the cost, then buy it. If you're getting along fine without it then you don't have to worry about getting it.

If your employer would be purchasing it and has the budget for it then it might be worth getting it sooner, but you could probably do the same thing I mentioned above so as to possibly save your company some money.

like image 30
Herms Avatar answered Nov 11 '22 01:11

Herms


You don't need FlexBuilder to develop Flex applications, I use:

  • Flex SDK
  • Editor of your choice ( I use emacs on Linux, Notepad++ handles ActionScript well in Windows)
  • Ant (Flex SDK comes with Ant tasks)

I wrote a entire blog post on how to set up a Flex development environment:

http://blog.apterainc.com/software/setting-up-a-flex-development-enviroment-in-gnulinux/

While I blogged about setting this environment up in Linux, most of the steps can be directly transferred to a windows environment.

As to the other posters: Developing GUI components in Flex is no different or harder then using HTML to design a webpage. If you require a WYSIWYG editor for that, then you do not know Flex or HTML well enough.

like image 9
mmattax Avatar answered Nov 11 '22 02:11

mmattax