vote up 6 vote down star
1

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

flag

6 Answers

vote up 13 vote down check

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|flag
Adobe Flex Builder looks to be in the $200 range. amazon.com/Adobe-38044406-Flex-Builder-3-0/dp/… – Brian Jul 13 at 21:36
vote up 0 vote down

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|flag
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
vote up 0 vote down

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|flag
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
vote up 0 vote down

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|flag
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
vote up 2 vote down

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|flag
FlashDevelop is a free alternative. – torial Sep 25 '08 at 17:19
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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