Blog Directory : Listing Details
Flex Examples details
Listing ID: 1259
Title: Flex Examples
Description: Flex is a highly productive, free open source framework for building and maintaining expressive web applications that deploy consistently on all major browsers, desktops, and operating systems.
Category: Internet : Web Development
Owner:
listed on: July 10, 2008 07:34:56 AM
Number Hits: 1 times
Recent Posts:
| Setting a bitmap image fill on a Spark FormHeading control in Flex Hero - Wed, 01 Sep 2010 23:52:16 +0000 |
| The following example shows how you can set a bitmap image fill on a Spark FormHeading control in Flex Hero by creating a custom FormHeading skin and creating a repeating BitmapFill object.<?xml version="1.0" encoding="utf-8"?><!-- http://blog.flexexamples.com/2010/09/01/setting-a-bitmap-image-fill-on-a-spark-formheading-control-in-flex-hero/ --><s:Application name="Spark_FormHeading_BitmapFill_test" xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"><s:layout><s:VerticalLayout horizontalAlign="center" verticalAlign="middle" /></s:layout> <fx:Style> @namespace s"library://ns.adobe.com/flex/spark"; [...] |
| Setting the background alpha on a Spark FormHeading control in Flex Hero - Wed, 01 Sep 2010 23:27:07 +0000 |
| The following example shows how you can set the background alpha on a Spark FormHeading control in Flex Hero by setting the backgroundAlpha style.<?xml version="1.0" encoding="utf-8"?><!-- http://blog.flexexamples.com/2010/09/01/setting-the-background-alpha-on-a-spark-formheading-control-in-flex-hero/ --><s:Application name="Spark_FormHeading_backgroundAlpha_test" xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"><s:layout><s:VerticalLayout horizontalAlign="center" verticalAlign="middle" /></s:layout><s:controlBarContent><s:Form><s:FormItem label="backgroundAlpha:"><s:HSlider id="sl" minimum="0.0" maximum="1.0" value="1.0" snapInterval="0.1" stepSize="0.1" /></s:FormItem></s:Form> [...] |
| Styling the error indicator on a Spark FomItem container in Flex Hero - Tue, 31 Aug 2010 06:59:29 +0000 |
| In a previous example,“Displaying the error indicator on a Spark FormItem container in Flex Hero”, we saw how you could display the error indicator on a Spark FormItem container in Flex Hero by setting the errorString property or using the Flex validators. The following example shows how you can style the error indicator on [...] |