<?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: Using the new filter effects in Flex Gumbo</title>
	<atom:link href="http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 14:19:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Vladimir</title>
		<link>http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/comment-page-1/#comment-7864</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Sun, 06 Jun 2010 07:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/#comment-7864</guid>
		<description>Thanks a lot for article!!!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for article!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/comment-page-1/#comment-3665</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Sun, 05 Oct 2008 19:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/#comment-3665</guid>
		<description>Sorry, I should have updated the post. One of the reasons I try and avoid too many posts on alpha/beta topics, the posts tend to need a bit more &quot;babysitting&quot;.

Happy Flexing!
Peter</description>
		<content:encoded><![CDATA[<p>Sorry, I should have updated the post. One of the reasons I try and avoid too many posts on alpha/beta topics, the posts tend to need a bit more &#8220;babysitting&#8221;.</p>
<p>Happy Flexing!<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jens Wegar</title>
		<link>http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/comment-page-1/#comment-3664</link>
		<dc:creator>Jens Wegar</dc:creator>
		<pubDate>Sun, 05 Oct 2008 19:22:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/#comment-3664</guid>
		<description>Great! It worked, thanks!

-Jens</description>
		<content:encoded><![CDATA[<p>Great! It worked, thanks!</p>
<p>-Jens</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/comment-page-1/#comment-3663</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Sun, 05 Oct 2008 18:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/#comment-3663</guid>
		<description>Jens Wegar,

In more &lt;a href=&quot;http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4&quot; rel=&quot;nofollow&quot;&gt;&lt;u&gt;recent Flex Gumbo SDK builds&lt;/u&gt;&lt;/a&gt; the &lt;code&gt;layout&lt;/code&gt; format was changed slightly. Instead of this code:
&lt;pre class=&quot;code&quot;&gt;
&lt;Application name=&quot;Gumbo_Filters_test&quot;
        xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;
        xmlns:mx=&quot;library:adobe/flex/halo&quot;
        layout=&quot;flex.layout.BasicLayout&quot;&gt;
&lt;/pre&gt;

You set the &lt;code&gt;layout&lt;/code&gt; property like this:
&lt;pre class=&quot;code&quot;&gt;
&lt;Application name=&quot;Gumbo_Filters_test&quot;
        xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;
        xmlns:mx=&quot;library:adobe/flex/halo&quot;&gt;
    &lt;layout&gt;
        &lt;BasicLayout /&gt;
    &lt;/layout&gt;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>Jens Wegar,</p>
<p>In more <a href="http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4" rel="nofollow"><u>recent Flex Gumbo SDK builds</u></a> the <code>layout</code> format was changed slightly. Instead of this code:</p>
<pre class="code">
&lt;Application name="Gumbo_Filters_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        xmlns:mx="library:adobe/flex/halo"
        layout="flex.layout.BasicLayout"&gt;
</pre>
<p>You set the <code>layout</code> property like this:</p>
<pre class="code">
&lt;Application name="Gumbo_Filters_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        xmlns:mx="library:adobe/flex/halo"&gt;
    &lt;layout&gt;
        &lt;BasicLayout /&gt;
    &lt;/layout&gt;
</pre>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jens Wegar</title>
		<link>http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/comment-page-1/#comment-3666</link>
		<dc:creator>Jens Wegar</dc:creator>
		<pubDate>Sun, 05 Oct 2008 12:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/08/14/using-the-new-filter-effects-in-flex-gumbo/#comment-3666</guid>
		<description>I&#039;m getting the following compile error when I try to compile this example:

Initializer for &#039;layout&#039;: values of type flex.layout.LayoutBase cannot be represented in text.

Any idea why this would happen, other than it has something to do with the layout attribute in the Application tag? If I remove the layout-attribute, then the example compiles right away. This has actually happened with all Gumbo examples that I&#039;ve tried so far that use the layout atrribute... =/</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting the following compile error when I try to compile this example:</p>
<p>Initializer for &#8216;layout&#8217;: values of type flex.layout.LayoutBase cannot be represented in text.</p>
<p>Any idea why this would happen, other than it has something to do with the layout attribute in the Application tag? If I remove the layout-attribute, then the example compiles right away. This has actually happened with all Gumbo examples that I&#8217;ve tried so far that use the layout atrribute&#8230; =/</p>
]]></content:encoded>
	</item>
</channel>
</rss>

