<?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: Compiling a simple Flex application using the Flex 4 SDK</title>
	<atom:link href="http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/</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/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/comment-page-1/#comment-4689</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Wed, 22 Jul 2009 14:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/#comment-4689</guid>
		<description>Updated example to work with Flex 4.0.0.8469 (and newer) SDKs.</description>
		<content:encoded><![CDATA[<p>Updated example to work with Flex 4.0.0.8469 (and newer) SDKs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/comment-page-1/#comment-3908</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 23 Oct 2008 12:00:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/#comment-3908</guid>
		<description>Wow, that seems like they&#039;re overly complicating something (the layout property) which was simple.

Does anyone know the reason for the change in syntax?

Thanks for creating such a great resource as well! Just starting out with Flex (I&#039;ve tried a few times with 1.5 and 2 but never really got anywhere) and it&#039;s really handy to have such an exhaustive list of examples. So thanks!

Jason</description>
		<content:encoded><![CDATA[<p>Wow, that seems like they&#8217;re overly complicating something (the layout property) which was simple.</p>
<p>Does anyone know the reason for the change in syntax?</p>
<p>Thanks for creating such a great resource as well! Just starting out with Flex (I&#8217;ve tried a few times with 1.5 and 2 but never really got anywhere) and it&#8217;s really handy to have such an exhaustive list of examples. So thanks!</p>
<p>Jason</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PeZ</title>
		<link>http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/comment-page-1/#comment-3906</link>
		<dc:creator>PeZ</dc:creator>
		<pubDate>Mon, 13 Oct 2008 19:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/#comment-3906</guid>
		<description>Yes, like this. My copy/paste failed apparently ;)</description>
		<content:encoded><![CDATA[<p>Yes, like this. My copy/paste failed apparently ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/comment-page-1/#comment-3909</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Sun, 12 Oct 2008 14:16:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/#comment-3909</guid>
		<description>Pez,

Correct, you could still define the &lt;code&gt;layout&lt;/code&gt; property inline in an FxApplication tag using the following code:
&lt;pre class=&quot;code&quot;&gt;
&lt;FxApplication name=&quot;FXToggleButton_test&quot;
        xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;
        &lt;strong style=&quot;color:red;&quot;&gt;layout=&quot;{new mx.layout.HorizontalLayout()}&quot;&lt;/strong&gt;&gt;
&lt;/pre&gt;

Or, did you have another way?

Peter</description>
		<content:encoded><![CDATA[<p>Pez,</p>
<p>Correct, you could still define the <code>layout</code> property inline in an FxApplication tag using the following code:</p>
<pre class="code">
&lt;FxApplication name=&quot;FXToggleButton_test&quot;
        xmlns=&quot;<a href="http://ns.adobe.com/mxml/2009&#038;quot" rel="nofollow">http://ns.adobe.com/mxml/2009&#038;quot</a>;
        <strong style="color:red;">layout=&quot;{new mx.layout.HorizontalLayout()}&quot;</strong>&gt;
</pre>
<p>Or, did you have another way?</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PeZ</title>
		<link>http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/comment-page-1/#comment-3907</link>
		<dc:creator>PeZ</dc:creator>
		<pubDate>Sun, 12 Oct 2008 08:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/compiling-a-simple-flex-application-using-the-flex-gumbo-sdk/#comment-3907</guid>
		<description>Hi,

You can still use the layout property inline the FxApplication tag :</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You can still use the layout property inline the FxApplication tag :</p>
]]></content:encoded>
	</item>
</channel>
</rss>

