up vote 8 down vote favorite
2
share [g+] share [fb]

I hear conflicting comments about Flex being 'free'. What is the straight story on Flex? Is it proprietary?

link|improve this question
feedback

6 Answers

up vote 17 down vote accepted

The Flex SDK is free and open source.

http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK

It includes command line tools for compiling Flex and ActionScript based applications.

Adobe sells an Eclipse based IDE named Flex Builder, although this is not required for Flex development.

mike chambers

link|improve this answer
Adobe Flex Builder looks to be in the $200 range. amazon.com/Adobe-38044406-Flex-Builder-3-0/dp/B0014A4G5U/… – Brian Jul 13 '09 at 21:36
feedback

FlexBuilder costs $249 for the standard version, which you can download for free for 60 days. The professional version is $699.

Flex itself is free. You could do all of your Flex development in your favorite text editor, without the visual layout and interactive debugging tools that FlexBuilder gives you, and run mxmlc from a build script to compile your code.

link|improve this answer
feedback

Flex is a framework based on Actionscript 3.0 and flash platform and you can download the sdk for free here: http://www.adobe.com/products/flex/flexdownloads/#sdk

The issue of cost comes into play if you want to use Flex Builder, which is an IDE for flex development. You can get a free trial of Flex Builder 3.0 for 60 days i believe.

PS Flex is open source... http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK

link|improve this answer
FlashDevelop is a free alternative. – torial Sep 25 '08 at 17:19
feedback

Well, there is the standard Free as in Beer vs Free as in Speech issue. Flex is Free as in speech (since it is under the MPL), and is Free as in Beer.

Use FlashDevelop for a free IDE. http://www.flashdevelop.org/wikidocs/index.php?title=Features:Interface

link|improve this answer
Does Adobe offer a free IDE similar to the Express versions of Visual Studio? I looked around on the Adobe site and couldn't find anything, and googled as well. Or is it just the API that is available? – Jason Jackson Sep 25 '08 at 17:15
Not via Adobe, but FlashDevelop is a decent / free in both senses IDE. – torial Sep 25 '08 at 17:20
feedback

I guess one good alternative that is totally free is http://www.openlaszlo.org/ I have played with it in the past and the support is very good too.

I have not used flex because I didn't know it was free. Then again it was a few years since I looked at the area.

link|improve this answer
Correct me if I'm wrong, but if I want to develop a Laszlo app, I have to have Java on my webserver, and access to install new WebServers. One of flex's advantages is it relies on the flashplayer in the browser. Create a .swf file, put up an html page, and it works... – Mikezx6r Sep 25 '08 at 17:20
Laszlo applications can be compiled from LZX into a binary SWF file, and loaded statically into an existing web page. This method is known as SOLO deployment. Applications deployed in this manner lack some functionality of servlet-contained files, i.e ability to consume SOAP web services and XML RPC – Paul Whelan Sep 25 '08 at 18:13
I've heard that OpenLaszlo has bad development environments, so be warned about that. – Nathan Moos Jun 7 '11 at 20:59
feedback

The Flex SDK is free. This allows you to compile and debug your Flex app from the command-line.

If you want something more advanced for development, Adobe sells an Eclipse plug-in or Flexbuilder (a custom version of Eclipse), but like most developer tools, and stuff from Adobe, it's pricey.

Oops:Turns out portions of Flex are open source, and available from Adobe.

link|improve this answer
Adobe Flexbuilder is not pricey when compared to Microsoft tools :) – 17 of 26 Sep 25 '08 at 17:21
Agreed, MS is expensive, but I compare FlexBuilder to something like MyEclipse. Adobe wants $249 for a basic version, whereas MyEclipse is $35. Both are effectively Eclipse add-ons/extensions, and MyEclipse does a whole lot more. – Mikezx6r Sep 25 '08 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.