The following example shows how you can set the joint style on a Flex Gumbo SolidColorStroke object by setting the joints property to a static constant in the JointStyle class (flash.display.JointStyle).
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″.
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2009/01/09/setting-the-joint-style-on-a-path-stroke-in-flex-gumbo/ -->
<Application name="Path_stroke_joints_test"
xmlns="http://ns.adobe.com/mxml/2009"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<Declarations>
<String id="pathData">M 0 0 L 200 0 L 0 80 Z</String>
</Declarations>
<ApplicationControlBar dock="true">
<Form styleName="plain">
<FormItem label="joints:">
<ComboBox id="comboBox"
dataProvider="[bevel,miter,round]" />
</FormItem>
</Form>
</ApplicationControlBar>
<Graphic>
<Path id="path" data="{pathData}">
<stroke>
<SolidColorStroke id="pathStroke"
joints="{comboBox.selectedItem}"
color="red"
weight="40" />
</stroke>
</Path>
<Path data="{pathData}">
<stroke>
<SolidColorStroke
color="black"
weight="1" />
</stroke>
</Path>
</Graphic>
</Application>
View source is enabled in the following example.
You can also set the joints property using ActionScript, as seen in the following example:
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2009/01/09/setting-the-joint-style-on-a-path-stroke-in-flex-gumbo/ -->
<Application name="Path_stroke_joints_test"
xmlns="http://ns.adobe.com/mxml/2009"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<Script>
<![CDATA[
import mx.events.ListEvent;
private function comboBox_change(evt:ListEvent):void {
pathStroke.joints = comboBox.selectedItem.toString();
}
]]>
</Script>
<ApplicationControlBar dock="true">
<Form styleName="plain">
<FormItem label="joints:">
<ComboBox id="comboBox"
selectedIndex="2"
change="comboBox_change(event);">
<dataProvider>
<Array>
<String>{JointStyle.BEVEL}</String>
<String>{JointStyle.MITER}</String>
<String>{JointStyle.ROUND}</String>
</Array>
</dataProvider>
</ComboBox>
</FormItem>
</Form>
</ApplicationControlBar>
<Graphic>
<Path id="path" data="M 0 0 L 200 0 L 0 80 Z">
<stroke>
<SolidColorStroke id="pathStroke"
color="red"
weight="40" />
</stroke>
</Path>
</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.



0 Responses to “Setting the joint style on a Path stroke in Flex Gumbo”
Leave a Reply