<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Creating a solid color fill on a Spark Ellipse object in Flex 4</title>
	<atom:link href="http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 19:26:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/comment-page-1/#comment-7515</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Sat, 17 Apr 2010 16:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/#comment-7515</guid>
		<description>@prolabi,

Sure, you can use a SolidColor fill:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;s:Ellipse id=&quot;ellipse&quot;
           width=&quot;300&quot; height=&quot;200&quot;
           horizontalCenter=&quot;0&quot; verticalCenter=&quot;0&quot;&gt;
    &lt;s:fill&gt;
        &lt;s:SolidColor color=&quot;red&quot; alpha=&quot;0.33&quot; /&gt;
    &lt;/s:fill&gt;
&lt;/s:Ellipse&gt;
&lt;/pre&gt;

Or a LinearGradient fill:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;s:Ellipse id=&quot;ellipse&quot;
           width=&quot;300&quot; height=&quot;200&quot;
           horizontalCenter=&quot;0&quot; verticalCenter=&quot;0&quot;&gt;
    &lt;s:fill&gt;
        &lt;s:LinearGradient rotation=&quot;45&quot;&gt;
            &lt;s:entries&gt;
                &lt;s:GradientEntry color=&quot;red&quot; alpha=&quot;0.33&quot; /&gt;
                &lt;s:GradientEntry color=&quot;purple&quot; alpha=&quot;0.66&quot; /&gt;
            &lt;/s:entries&gt;
        &lt;/s:LinearGradient&gt;
    &lt;/s:fill&gt;
&lt;/s:Ellipse&gt;
&lt;/pre&gt;

Or a RadialGradient fill:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;s:Ellipse id=&quot;ellipse&quot;
           width=&quot;300&quot; height=&quot;200&quot;
           horizontalCenter=&quot;0&quot; verticalCenter=&quot;0&quot;&gt;
    &lt;s:fill&gt;
        &lt;s:RadialGradient rotation=&quot;45&quot;&gt;
            &lt;s:entries&gt;
                &lt;s:GradientEntry color=&quot;red&quot; alpha=&quot;0.33&quot; /&gt;
                &lt;s:GradientEntry color=&quot;yellow&quot; alpha=&quot;0.5&quot; /&gt;
                &lt;s:GradientEntry color=&quot;purple&quot; alpha=&quot;0.66&quot; /&gt;
            &lt;/s:entries&gt;
        &lt;/s:RadialGradient&gt;
    &lt;/s:fill&gt;
&lt;/s:Ellipse&gt;
&lt;/pre&gt;

Or a BitmapFill fill:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;s:Ellipse id=&quot;ellipse&quot;
        width=&quot;300&quot; height=&quot;200&quot;
        horizontalCenter=&quot;0&quot; verticalCenter=&quot;0&quot;&gt;
    &lt;s:fill&gt;
        &lt;s:BitmapFill source=&quot;@Embed(&#039;assets/pattern_143.gif&quot; fillMode=&quot;repeat&quot; /&gt;
    &lt;/s:fill&gt;
&lt;/s:Ellipse&gt;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>@prolabi,</p>
<p>Sure, you can use a SolidColor fill:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Ellipse</span> id=<span style="color: #ff0000;">&quot;ellipse&quot;</span></span>
<span style="color: #000000;">           width=<span style="color: #ff0000;">&quot;300&quot;</span> height=<span style="color: #ff0000;">&quot;200&quot;</span></span>
<span style="color: #000000;">           horizontalCenter=<span style="color: #ff0000;">&quot;0&quot;</span> verticalCenter=<span style="color: #ff0000;">&quot;0&quot;</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:fill</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:SolidColor</span> color=<span style="color: #ff0000;">&quot;red&quot;</span> alpha=<span style="color: #ff0000;">&quot;0.33&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:fill</span><span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Ellipse</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Or a LinearGradient fill:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Ellipse</span> id=<span style="color: #ff0000;">&quot;ellipse&quot;</span></span>
<span style="color: #000000;">           width=<span style="color: #ff0000;">&quot;300&quot;</span> height=<span style="color: #ff0000;">&quot;200&quot;</span></span>
<span style="color: #000000;">           horizontalCenter=<span style="color: #ff0000;">&quot;0&quot;</span> verticalCenter=<span style="color: #ff0000;">&quot;0&quot;</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:fill</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:LinearGradient</span> rotation=<span style="color: #ff0000;">&quot;45&quot;</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:entries</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:GradientEntry</span> color=<span style="color: #ff0000;">&quot;red&quot;</span> alpha=<span style="color: #ff0000;">&quot;0.33&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:GradientEntry</span> color=<span style="color: #ff0000;">&quot;purple&quot;</span> alpha=<span style="color: #ff0000;">&quot;0.66&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:entries</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:LinearGradient</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:fill</span><span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Ellipse</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Or a RadialGradient fill:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Ellipse</span> id=<span style="color: #ff0000;">&quot;ellipse&quot;</span></span>
<span style="color: #000000;">           width=<span style="color: #ff0000;">&quot;300&quot;</span> height=<span style="color: #ff0000;">&quot;200&quot;</span></span>
<span style="color: #000000;">           horizontalCenter=<span style="color: #ff0000;">&quot;0&quot;</span> verticalCenter=<span style="color: #ff0000;">&quot;0&quot;</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:fill</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:RadialGradient</span> rotation=<span style="color: #ff0000;">&quot;45&quot;</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:entries</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:GradientEntry</span> color=<span style="color: #ff0000;">&quot;red&quot;</span> alpha=<span style="color: #ff0000;">&quot;0.33&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:GradientEntry</span> color=<span style="color: #ff0000;">&quot;yellow&quot;</span> alpha=<span style="color: #ff0000;">&quot;0.5&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:GradientEntry</span> color=<span style="color: #ff0000;">&quot;purple&quot;</span> alpha=<span style="color: #ff0000;">&quot;0.66&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:entries</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:RadialGradient</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:fill</span><span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Ellipse</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Or a BitmapFill fill:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Ellipse</span> id=<span style="color: #ff0000;">&quot;ellipse&quot;</span></span>
<span style="color: #000000;">        width=<span style="color: #ff0000;">&quot;300&quot;</span> height=<span style="color: #ff0000;">&quot;200&quot;</span></span>
<span style="color: #000000;">        horizontalCenter=<span style="color: #ff0000;">&quot;0&quot;</span> verticalCenter=<span style="color: #ff0000;">&quot;0&quot;</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:fill</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:BitmapFill</span> source=<span style="color: #ff0000;">&quot;@Embed('assets/pattern_143.gif&quot;</span> fillMode=<span style="color: #ff0000;">&quot;repeat&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:fill</span><span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Ellipse</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prolabi</title>
		<link>http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/comment-page-1/#comment-7513</link>
		<dc:creator>prolabi</dc:creator>
		<pubDate>Sat, 17 Apr 2010 14:22:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/#comment-7513</guid>
		<description>what a nice tutorial, 

but how about creating ellipses with multiple color, not a solid one ??</description>
		<content:encoded><![CDATA[<p>what a nice tutorial, </p>
<p>but how about creating ellipses with multiple color, not a solid one ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raul Riera</title>
		<link>http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/comment-page-1/#comment-4019</link>
		<dc:creator>Raul Riera</dc:creator>
		<pubDate>Fri, 28 Nov 2008 15:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/#comment-4019</guid>
		<description>Thanks Peter, will do</description>
		<content:encoded><![CDATA[<p>Thanks Peter, will do</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/comment-page-1/#comment-4020</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Thu, 27 Nov 2008 01:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/#comment-4020</guid>
		<description>Raul Riera,

The 2009 namespace will replace the 2006 namespace. The 2009 namespace will also contain both the Gumbo (Fx*) components and the older Halo components. Personally, I&#039;m not sure if &lt;em&gt;all&lt;/em&gt; the Halo components will be migrated to Gumbo components right away though. The good news is that you can use both Gumbo and Halo based components in the same application. Likewise, you can continue to use the Halo Application container or you can use the Gumbo FxApplication container in your Flex applications.

Gumbo is still somewhat &quot;beta&quot;, and isn&#039;t expected to be final until the second half of 2009 (according to the &lt;a href=&quot;http://opensource.adobe.com/wiki/display/flexsdk/Gumbo&quot; rel=&quot;nofollow&quot;&gt;Gumbo page on opensource.adobe.com&lt;/a&gt;). But if you want to start developing applications with Gumbo, please do! We appreciate any bugs you find and file in the bug base (&lt;a href=&quot;http://bugs.adobe.com/flex/&quot; rel=&quot;nofollow&quot;&gt;bugs.adobe.com/flex/&lt;/a&gt;).

Regards,
Peter</description>
		<content:encoded><![CDATA[<p>Raul Riera,</p>
<p>The 2009 namespace will replace the 2006 namespace. The 2009 namespace will also contain both the Gumbo (Fx*) components and the older Halo components. Personally, I&#8217;m not sure if <em>all</em> the Halo components will be migrated to Gumbo components right away though. The good news is that you can use both Gumbo and Halo based components in the same application. Likewise, you can continue to use the Halo Application container or you can use the Gumbo FxApplication container in your Flex applications.</p>
<p>Gumbo is still somewhat &#8220;beta&#8221;, and isn&#8217;t expected to be final until the second half of 2009 (according to the <a href="http://opensource.adobe.com/wiki/display/flexsdk/Gumbo" rel="nofollow">Gumbo page on opensource.adobe.com</a>). But if you want to start developing applications with Gumbo, please do! We appreciate any bugs you find and file in the bug base (<a href="http://bugs.adobe.com/flex/" rel="nofollow">bugs.adobe.com/flex/</a>).</p>
<p>Regards,<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raul Riera</title>
		<link>http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/comment-page-1/#comment-4021</link>
		<dc:creator>Raul Riera</dc:creator>
		<pubDate>Wed, 26 Nov 2008 15:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/11/26/creating-a-solid-color-fill-on-an-ellipse-object-in-flex-gumbo/#comment-4021</guid>
		<description>Are this Fx going to replace the mx: namespace? I am wondering if I should start coding my app in Gumbo and then make the changes once is final.

Suggestions?</description>
		<content:encoded><![CDATA[<p>Are this Fx going to replace the mx: namespace? I am wondering if I should start coding my app in Gumbo and then make the changes once is final.</p>
<p>Suggestions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

