The following example shows you how you can create and compile a simple Flex application using the latest version (build 4.0.0.3584) of the beta Flex 4 SDK.
If you haven’t downloaded and installed a Flex 4 SDK into Flex Builder 3 before, check out the following entries: “Downloading and installing Flex SDK builds from opensource.adobe.com” and “Using the beta Flex 4 SDK in Flex Builder 3″. For other Flex 4 entries, see http://blog.flexexamples.com/tag/gumbo/.
Full code after the jump.
The following example(s) require Flash Player 10 and the Adobe Flex 4 SDK. To download the Adobe Flash Builder 4 beta, check out the Adobe Flash Builder 4 page on the Adobe Labs site. To download the latest build of the Flex 4 SDK, see http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4. For instructions on using the beta Flex 4 SDK in Flex Builder 3, see "Using the beta Flex 4 SDK in Flex Builder 3".
<?xml version="1.0" encoding="utf-8"?> <!-- http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/ --> <s:Application name="Spark_Application_test" xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo"> <s:layout> <s:BasicLayout /> </s:layout> <s:HGroup id="hGroup" left="10" top="10"> <s:Button id="fxButton" label="I'm a Spark Button, s:Button" /> <mx:Button id="mxButton" label="I'm a Halo Button, mx:Button" /> </s:HGroup> </s:Application>
View source is enabled in the following example.
You’ll notice that a few things have changed from Flex 3, and from earlier versions of the Flex 4 SDKs.
- Instead of using the
<mx:Application/>tag, you can use the<s:Application/>tag, plus, we define a couple newer XML namespace URLs. - Instead of declaring the
layoutproperty inline in the <Application> tag, as seen in earlier versions of Flex and the Flex 4 beta, thelayoutproperty is now defined using an MXML tag, where we can specify <BasicLayout/>, <VerticalLayout/>, or <HorizontalLayout/> (which are similar to “absolute”, “vertical”, or “horizontal” layouts in earlier releases of Flex). - You can align controls or containers vertically or horizontally using the Spark <VGroup/> or <HGroup/> tags instead of using the Halo <VBox/> or <HBox/> tags, respectively.
- In earlier versions of the Flex 4 SDK the Spark Button control used the flex.component.Button class. This class (along with everything else in the flex.* packages) have been renamed and moved into the spark.* packages. The Spark Button control now lives in the spark.components.* package.
For more information on Flex 4, as well as milestones and various documents and specifications, see http://opensource.adobe.com/wiki/display/flexsdk/Gumbo/.
Happy Flexing!
This entry is based on a beta version of the Flex 4 SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex 4 SDK.

{ 5 comments… read them below or add one }
Hi,
You can still use the layout property inline the FxApplication tag :
Pez,
Correct, you could still define the
layoutproperty inline in an FxApplication tag using the following code:<FxApplication name="FXToggleButton_test" xmlns="http://ns.adobe.com/mxml/2009" layout="{new mx.layout.HorizontalLayout()}">Or, did you have another way?
Peter
Yes, like this. My copy/paste failed apparently ;)
Wow, that seems like they’re overly complicating something (the layout property) which was simple.
Does anyone know the reason for the change in syntax?
Thanks for creating such a great resource as well! Just starting out with Flex (I’ve tried a few times with 1.5 and 2 but never really got anywhere) and it’s really handy to have such an exhaustive list of examples. So thanks!
Jason
Updated example to work with Flex 4.0.0.8469 (and newer) SDKs.