HTML/CSS Service

Showcase

0 comments0 views
1 Star2 Stars

Flex 3 Cookbook

Category: Flex Samples    |    212 views    |    Add a Comment
Description
This highly practical book contains more than 300 proven recipes for developing interactive Rich Internet Applications and Web 2.0 sites. You’ll find everything from Flex basics and working with menus and controls, to methods for compiling, deploying, and configuring Flex applications. Each recipe features a discussion of how and why it works, and many of them offer sample code that you can put to use immediately.

Full Description

Flex Combo Box example

Category: Flex Samples    |    5,790 views    |    Add a 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



height = '40%' color = '#FFFFCF'>
'100%' height = '100%'>




Neo/ Thomas Anderson

Trinity/ Carrie-Anne Moss

Eve/ Rachel Weisz






Snow White - Adriana Caselotti

Aurora - Mary Costa
Ariel - Jodi Benson



Share/Save/Bookmark

  • No Related Post

 

styling the last button in a buttonbar control in flex

Category: Flex Examples, Flex Samples    |    2,716 views    |    Add a 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…

Share/Save/Bookmark