The following example shows how you can set the emphasized button state on a Flex 4 Spark Button control by setting the Boolean emphasized property.
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/2009/03/03/creating-an-emphasized-fxbutton-control-in-flex-gumbo/ --> <s:Application name="Spark_Button_emphasized_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:controlBarContent> <s:CheckBox id="checkBox" label="emphasized" /> </s:controlBarContent> <s:Button label="Spark Button" emphasized="{checkBox.selected}" horizontalCenter="0" verticalCenter="0" /> </s:Application>
For an example of styling the emphasized state, see “Styling an emphasized Spark Button control in Flex 4″.
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.
