Creating a radial gradient fill on a Rect object in Flex Gumbo

by Peter deHaan on December 23, 2008

in FXG, RadialGradient, Rect, beta

In a previous example, “Creating a linear gradient fill on an Ellipse object in Flex Gumbo”, we saw you could create a linear gradient fill on a Flex Gumbo Ellipse object by setting the fill property to a LinearGradient object.

The following example shows how you can create a radial gradient fill on a Flex Gumbo Rect object by setting the fill property to a RadialGradient object.

Full code after the jump.

To use the following code, you must have Flash Player 10 and a Flex Gumbo SDK installed in your Flex Builder 3. For more information on downloading and installing the Gumbo SDK into Flex Builder 3, see “Using the beta Gumbo SDK in Flex Builder 3″.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/12/23/creating-a-radial-gradient-fill-on-a-rect-object-in-flex-gumbo/ -->
<Application name="Rect_fill_RadialGradient_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <Graphic>
        <Rect id="rect" width="300" height="200">
            <fill>
                <RadialGradient>
                    <entries>
                        <GradientEntry color="red" />
                        <GradientEntry color="white" />
                        <GradientEntry color="blue" />
                    </entries>
                </RadialGradient>
            </fill>
        </Rect>
    </Graphic>

</Application>

View source is enabled in the following example.

This entry is based on a beta version of the Flex Gumbo SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex Gumbo SDK.

{ 1 comment… read it below or add one }

1 Melody December 24, 2008 at 5:53 am

This is really cool, but example does not show a radial gradient, it shows 3 different linear gradients. Still very cool!

Reply

Leave a Comment

Sorry, this blog is terrible at eating HTML comments.
If you're pasting any HTML/XML/MXML code, you need to convert your < characters to &lt; and your > characters to &gt; .

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Anti-Spam Protection by WP-SpamFree

Previous post:

Next post: