Flex4 Button With State

Nov 30th, 2010 | Posted by Michael

Following  example  show simple State change Button width

ButtonWithState.mxml

Flex4 Tree openDuration and openEasingFunction

Nov 30th, 2010 | Posted by Michael

Following example show Tree openDuration and openEasingFunction usage.

TreeDemo1.mxml

Flex4 ComboBox TextInput Fun

Nov 30th, 2010 | Posted by Michael

The ComboBox control is a child class of the DropDownListBase control. Like the DropDownList control, when the user selects an item from the drop-down list in the ComboBox control, the data item appears in the prompt area of the control.

Flex4 VerticalList Example

Nov 30th, 2010 | Posted by Michael

Following example show how use spark list become to VerticalList.

MyList.mxml

How Flash Builder 4 itemRenderer data control and return item index

Nov 30th, 2010 | Posted by Michael

Following example show you how create dataGroup itemRenderer and return item index

DataGroup2.mxml

Flex4 ComboBox only prompt with image display

Nov 30th, 2010 | Posted by Michael

Following example show how to remove skinClass from ComboBox.

FAQ0909_1.mxml

FLEX XML to Collection Part 4

Nov 30th, 2010 | Posted by Michael

Following example show  XML to ArrayCollection use Model Class

XMLToCollection4.mxml

Flex4 DataGrid with MXItemRenderer and setting row height

Nov 30th, 2010 | Posted by Michael

FlashBuilder 4 is planning a new ItemRenderer wizard/tool to help folks create ItemRenderers for Spark List controls. Because Spark doesn’t yet have a Tree or DataGrid, and because MX Tree and MX DataGrid have a different ItemRenderer contract, the new tool will not be usable in all list-type controls and folks will have to learn both ItemRenderer contracts.

Flex4 ComboBox with icon

Nov 30th, 2010 | Posted by Michael

Following example show Flex4 ComboBox how to use skin to display icon properties .

skins/MyComboBoxSkin.mxml

Flex4 DropDownList with Dynamic Data

Nov 30th, 2010 | Posted by Michael

Changing a select element’s content on the fly is a powerful feature of JavaScript that’s just as practical. Following example show how easy use Flex to do the same thing.

Flex event target and currentTarget

Nov 30th, 2010 | Posted by Michael

In follwing example  we have use an event object property  target and currentTarget to drag the panel,These properties enables the programmer to  track the event of which the object is made, during the event’s propagating process. Properties target and currentTarget differ in their targeting jobs.  target property may dispatch the event to a component or component’s sub component, whereas currentTarget will target the event to a particular node in which the event listener .The currentTarget property is the IEventListener you registered the event handler for. The target is the one that dispatched the event that you are currently handling.

Flex4 clipAndEnableScrolling Example

Nov 30th, 2010 | Posted by Michael

Need to understand what is clipAndEnableScrolling property?