Flex 3 Cookbook
Category: Flex Samples | 502 views | Add a Comment
- What is Flex?
- Flex Component Kit
- Flex Ajax Bridge
- Rich Internet applications (RIAs)
- Flex Tricks
- Embedded Fonts in Flex
- Exception Handling with BlazeDS and Flex
- Handling Java Exceptions in Flex application
- styling the last button in a buttonbar control in flex
- Flex Using Data Binding to Configure Validators
Flex Combo Box example
Category: Flex Samples | 7,462 views | 1 Comment
In this tutorial page you will be taught to utilize ComboBox control inside your flex file. In the example you will learn to build two ComboBox controls. The Example below shows combo boxes with nicely formatted string data, so here you will be also taught to do the graphical works on flex visual component.
The following code demonstrates the ComboBox control working example. This control shows the drop-down list of data you passed as String inside it.
combo.mxml
- No Related Post
styling the last button in a buttonbar control in flex
Category: Flex Examples, Flex Samples | 3,410 views | 1 Comment
The following example shows how you can style the last button in a Flex ButtonBar control
by setting the lastButtonStyleName style.
<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application name=”ButtonBar_lastButtonStyleName_test”
xmlns:mx=”http://www.adobe.com/2006/mxml”
layout=”vertical”
verticalAlign=”middle”
backgroundColor=”white”>
<mx:Style>
.lastButton {
color: red;
cornerRadius: 10;
fontWeight: normal;
themeColor: haloGreen;
}
</mx:Style>
<mx:ButtonBar id=”buttonBar”
dataProvider=”[Red,Orange,Yellow,Green,Blue]”
lastButtonStyleName=”lastButton” />
</mx:Application>
Read more…
- Handling Java Exceptions in Flex application
- learn Flex Application Frameworks
- Add FlexComponents to your mailing lists!
- Great Ways to Learn ActionScript 3 in Flash
- How to Learn Flex
- What is Flex?
- Flex Component Kit
- Flex 3 Cookbook
- Flex Ajax Bridge
- Rich Internet applications (RIAs)







