Welcome to the new Flex.org. This site aggregates Flex news from a number of sources, and allows community members to contribute their own content as well. We have recently updated to Drupal 6, powered by Acquia. If you find any problems, please contact us.
The following example shows how you can import a TextFlow object from an XML object in Flex 4 by using the static TextFlowUtil.importFromXML() method.
Full code after the jump.
(more…)
The following example shows how you can display icons in a Spark List control in Flex 4 by creating a custom item renderer.
Full code after the jump.
(more…)
The following example shows how you can set the base theme color on a Spark DropDownList control in Flex 4 by setting the baseColor style.
Full code after the jump.
(more…)
The following example shows how you can set the symbol color on a Spark DropDownList control in Flex 4 by setting the symbolColor style.
Full code after the jump.
(more…)
The following example shows how you can style the Halo Accordion header (with default Spark skin) in Flex 4 by creating a new skin based on the default Spark skin and modifying the various skin parts.
The default Halo Accordion header Spark skin can be found at \frameworks\projects\sparkskins\src\mx\skins\spark\AccordionHeaderSkin.mxml.
Full code after the jump.
(more…)
The following example shows how you can set the corner radius on the Halo TextArea control (with default Spark skin) in Flex 4 by creating a custom skin and setting the radiusX and radiusY properties on the Rect objects (in Flex 3 and earlier this was done by setting the cornerRadius style directly).
Full code after the jump.
(more…)
The following example shows how you can set the viewport inset on a Spark Scroller control in Flex 4 by setting the minViewportInset property.
Full code after the jump.
(more…)
I need a simple way to animate my components, or images as they are loaded without adding a bunch of code to control the animations.
I want a quick and dirty way to display a Twitter feed in my application.
I want to put a fixed number of instances in a MXML Gumbo component.