Setting the interpolation method for a linear gradient in Flex Gumbo

by Peter deHaan on December 1, 2008

in FXG, beta

The following example shows how you can set the interpolation method on a Flex Gumbo Ellipse object’s LinearGradient fill by setting the interpolationMethod property to one of the constants in the flash.display.InterpolationMethod class.

Full code after the jump.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/12/01/setting-the-interpolation-method-for-a-linear-gradient-in-flex-gumbo/ -->
<Application name="LinearGradient_interpolationMethod_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <ApplicationControlBar dock="true">
        <Form styleName="plain">
            <FormItem label="interpolationMethod:">
                <ComboBox id="comboBox" selectedIndex="1">
                    <dataProvider>
                        <String>{InterpolationMethod.LINEAR_RGB}</String>
                        <String>{InterpolationMethod.RGB}</String>
                    </dataProvider>
                </ComboBox>
            </FormItem>
        </Form>
    </ApplicationControlBar>

    <Graphic>
        <Ellipse id="ellipse" width="300" height="200">
            <fill>
                <LinearGradient id="linearGrad"
                        interpolationMethod="{comboBox.selectedItem}">
                    <GradientEntry color="haloOrange" />
                    <GradientEntry color="haloBlue" />
                </LinearGradient>
            </fill>
        </Ellipse>
    </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 greencard December 24, 2008 at 1:25 am

Is there any information about this subject in other languages?

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: