Take a peak at this quick tutorial to get the Adobe Flex SDK up and running. The Flex environment is a must have for web developers.
The first step to creating your Flex environment is make sure you have Java installed first. The command “java -version” will print out your current java environment. There is a variety of Open Source and Sun Microsystems variety there may be some trial and error as new Flex and Java SDK’s are released. If you build the Java environment from a bin file as opposed to using the apt-get tool make sure to update your environment in your “.bash.bashrc.” Just .bashrc in some other linux distros.
Second lets download and install the latest flex SDK. http://www.adobe.com/products/flex/flexdownloads/ Now unzip and move your new flex_sdk to a directory of your choice. Edit your bash.bashrc and ensure the path matches the directory where Flex is installed. In my case flex was moved to /usr/share/ where I created a new fancy folder called flex. The important thing is the complete path reaches the bin folder. Make sure you use “chmod” to allow yourself rights to this folder.
Now try the mxmlc command and verify it is seen. Make sure you close and open a new terminal so it sees your update .bash.bashrc environment. mxmlc -help should print out this help message. Now you are ready to try the Flex compiler!
Adobe has terrific documentation with very easy examples for you to play with and edit: http://livedocs.adobe.com/flex/3/langref/index.html Copy text from a example mxmlc you like a paste it in a text editor: I used Adobes FormExample.mxml:
Now use the command “mxmlc” to compile your new mxml file:
You should now have a SWF file of the same name:
Great now view your freshly compiled swf with FireFox or opera:
You should now see your Flex Form:
_ Congrats! I hope this tutorial helped. If not comment on problems you are having below.