Setting the miter limit on a stroke object in Flex Gumbo

by Peter deHaan on January 2, 2009

in FXG, GradientEntry, LinearGradientStroke, Rect, beta

The following example shows how you can set the miter limit on a Flex Gumbo stroke by setting the miterLimit property on a stroke 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/2009/01/02/setting-the-miter-limit-on-a-stroke-object-in-flex-gumbo/ -->
<Application name="LinearGradientStroke_miterLimit_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <ApplicationControlBar dock="true">
        <Form styleName="plain">
            <FormItem label="miterLimit:">
                <HSlider id="slider"
                        minimum="0"
                        maximum="2"
                        tickInterval="0.5"
                        liveDragging="true" />
            </FormItem>
        </Form>
    </ApplicationControlBar>

    <Graphic>
        <Rect id="rect" width="300" height="200">
            <stroke>
                <LinearGradientStroke id="linearGrad"
                        joints="miter"
                        miterLimit="{slider.value}"
                        weight="40">
                    <entries>
                        <GradientEntry color="red" />
                        <GradientEntry color="white" />
                        <GradientEntry color="blue" />
                    </entries>
                </LinearGradientStroke>
            </stroke>
        </Rect>
    </Graphic>

</Application>

View source is enabled in the following example.

You can also set the miterLimit property using ActionScript, as seen in the following example:

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2009/01/02/setting-the-miter-limit-on-a-stroke-object-in-flex-gumbo/ -->
<Application name="LinearGradientStroke_miterLimit_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <Script>
        <![CDATA[
            import mx.events.SliderEvent;

            private function slider_change(evt:SliderEvent):void {
                linearGrad.miterLimit = slider.value;
            }
        ]]>
    </Script>

    <ApplicationControlBar dock="true">
        <Form styleName="plain">
            <FormItem label="miterLimit:">
                <HSlider id="slider"
                        minimum="0"
                        maximum="2"
                        tickInterval="0.5"
                        liveDragging="true"
                        change="slider_change(event);" />
            </FormItem>
        </Form>
    </ApplicationControlBar>

    <Graphic>
        <Rect id="rect" width="300" height="200">
            <stroke>
                <LinearGradientStroke id="linearGrad"
                        joints="miter"
                        weight="40">
                    <entries>
                        <GradientEntry color="red" />
                        <GradientEntry color="white" />
                        <GradientEntry color="blue" />
                    </entries>
                </LinearGradientStroke>
            </stroke>
        </Rect>
    </Graphic>

</Application>

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 Dress Game January 3, 2009 at 10:02 am

I am not exactly sure what a Mitir Limit is, can you explain?

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: