Reputation: 13923
I am very new to the flash/flex world. I am wondering if I can create a SWF in Flex WITHOUT using Flash Builder ?
Upvotes: 0
Views: 1745
Reputation: 7294
Actually mxmlc.exe
compiles your application (about). You can compile directly using it and passing appropriate parameters.
Also you can compile using flex ant task.
And of course you can use other IDE for compiling:
But all in all, all of this tools actually use mxmlc compiler (or its variations).
Upvotes: 5
Reputation: 891
Yes ! You can write ActionScript code using any editor and you can use the mxmlc
command line tool. Refer here for more on mxmlc
. You can also use Eclipse IDE, point it to Flex SDK and do Flex development.
Adobe Flash Builder is not a must to generate .SWFs.
Upvotes: 1
Reputation: 26743
You can indeed by using:
mxmlc
on the command line;mxmlc
Ant task;FlashBuilder uses mxmlc to compile your Flex application. Other IDEs can also build Flex applications, such as IntelliJ IDEA.
Upvotes: 0
Reputation: 25489
A few basics:
Flash Builder is the IDE using which you'll develop applications in ActionScript (the language), taking help of the Flex framework. When you publish the application, the compiler will create an swf file which will run on Flash Player (for browser apps) and an installer file for desktop apps.
Upvotes: 0