<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EverythingFlex: Flex &#38; AIR &#187; Flex 3 (Moxie)</title>
	<atom:link href="http://blog.everythingflex.com/category/flex-3-moxie/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.everythingflex.com</link>
	<description>News and Information about Adobe Flex &#38; Adobe AIR by Rich Tretola</description>
	<lastBuildDate>Wed, 10 Mar 2010 18:10:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>F3 v. F4: Using ViewStack, TabNavigator and Accordion</title>
		<link>http://blog.everythingflex.com/2010/03/09/f3-v-f4-using-viewstack-tabnavigator-and-accordion/</link>
		<comments>http://blog.everythingflex.com/2010/03/09/f3-v-f4-using-viewstack-tabnavigator-and-accordion/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 17:45:15 +0000</pubDate>
		<dc:creator>Rich Tretola</dc:creator>
				<category><![CDATA[Flex 3 (Moxie)]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[Accordion]]></category>
		<category><![CDATA[F3 v. F4]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[NavigatorContent]]></category>
		<category><![CDATA[TabNavigator]]></category>

		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1740</guid>
		<description><![CDATA[You have probably used mx:ViewStack, mx:TabNavigator and mx:Accordion somewhere in your Flex development efforts over the last 5+ years and had code that looks like this:
1234567891011121314151617181920212223&#60;mx:TabNavigator width=&#34;400&#34; height=&#34;200&#34; horizontalCenter=&#34;0&#34; y=&#34;15&#34;&#62;
&#160; &#160; &#60;mx:VBox label=&#34;Tab 1&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:Label text=&#34;This is tab 1&#34;/&#62;
&#160; &#160; &#60;/mx:VBox&#62;
&#160; &#160; &#60;mx:VBox label=&#34;Tab 2&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:Label text=&#34;This is tab [...]]]></description>
		<wfw:commentRss>http://blog.everythingflex.com/2010/03/09/f3-v-f4-using-viewstack-tabnavigator-and-accordion/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>F3 v. F4: Repeater v DataGroup</title>
		<link>http://blog.everythingflex.com/2010/01/11/f3-v-f4-repeater-v-datagroup/</link>
		<comments>http://blog.everythingflex.com/2010/01/11/f3-v-f4-repeater-v-datagroup/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 12:00:37 +0000</pubDate>
		<dc:creator>Rich Tretola</dc:creator>
				<category><![CDATA[Flex 3 (Moxie)]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[DataGroup]]></category>
		<category><![CDATA[F3 v. F4]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[flex3]]></category>
		<category><![CDATA[flex4]]></category>
		<category><![CDATA[ItemRenderer]]></category>
		<category><![CDATA[Repeater]]></category>

		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1794</guid>
		<description><![CDATA[Ah, good old repeaters. Well if you have used repeaters in the past you are more likely to say, good riddance Mr. repeater.  Repeaters were not only pretty heavy components, but also just a general pain in the butt. So, what does Flex 4 have to help us? DataGroups!
The following examples both use the [...]]]></description>
		<wfw:commentRss>http://blog.everythingflex.com/2010/01/11/f3-v-f4-repeater-v-datagroup/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>F3 v. F4: Boxes v Groups</title>
		<link>http://blog.everythingflex.com/2010/01/06/f3-v-f4-boxes-v-groups/</link>
		<comments>http://blog.everythingflex.com/2010/01/06/f3-v-f4-boxes-v-groups/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 12:00:11 +0000</pubDate>
		<dc:creator>Rich Tretola</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3 (Moxie)]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[F3 v. F4]]></category>
		<category><![CDATA[flex3]]></category>
		<category><![CDATA[flex4]]></category>
		<category><![CDATA[mx:HBox]]></category>
		<category><![CDATA[s:Group]]></category>

		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1750</guid>
		<description><![CDATA[Layouts are something that has changed a lot with Flex 4. There are several ways to accomplish your layout. Here is a simple Flex 3 example where we wanted to horizontally layout two vertical groupings of Label and TextInput components.
12345678910&#60;mx:HBox horizontalCenter=&#34;0&#34; verticalCenter=&#34;0&#34;&#62;
&#160; &#160; &#60;mx:VBox&#62;
&#160; &#160; &#160; &#160; &#60;mx:Label text=&#34;First name:&#34;/&#62;
&#160; &#160; &#160; &#160; &#60;mx:TextInput /&#62;
&#160; [...]]]></description>
		<wfw:commentRss>http://blog.everythingflex.com/2010/01/06/f3-v-f4-boxes-v-groups/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>F3 v. F4: New Series Overview</title>
		<link>http://blog.everythingflex.com/2010/01/05/f3-v-f4-new-series-overview/</link>
		<comments>http://blog.everythingflex.com/2010/01/05/f3-v-f4-new-series-overview/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 13:47:53 +0000</pubDate>
		<dc:creator>Rich Tretola</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3 (Moxie)]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[F3 v. F4]]></category>
		<category><![CDATA[flex3]]></category>
		<category><![CDATA[flex4]]></category>
		<category><![CDATA[fx]]></category>
		<category><![CDATA[mx]]></category>
		<category><![CDATA[s]]></category>

		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1742</guid>
		<description><![CDATA[There have been many changes to the way you use the Spark (xmlns:s) components of Flex 4 vs the older Halo (xmlns:mx) components of Flex 3. My plan of this series is to release a simple comparison post every couple of days comparing the way you would do something in Flex 4 vs Flex 3.
Lets [...]]]></description>
		<wfw:commentRss>http://blog.everythingflex.com/2010/01/05/f3-v-f4-new-series-overview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex 3 vs Flex 4 State Management</title>
		<link>http://blog.everythingflex.com/2009/05/12/flex-3-vs-flex-4-state-management/</link>
		<comments>http://blog.everythingflex.com/2009/05/12/flex-3-vs-flex-4-state-management/#comments</comments>
		<pubDate>Tue, 12 May 2009 13:08:27 +0000</pubDate>
		<dc:creator>Rich Tretola</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3 (Moxie)]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[flex3]]></category>
		<category><![CDATA[flex4]]></category>
		<category><![CDATA[states]]></category>

		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1071</guid>
		<description><![CDATA[Here is a very simple example of how State management has changed between Flex 3 and Flex 4. Other than the default skin, both of these applications are identical in their resulting swfs. However, how they are coded is much different. Take a look at the code and samples below (Note: Click on the buttons!).
Flex [...]]]></description>
		<wfw:commentRss>http://blog.everythingflex.com/2009/05/12/flex-3-vs-flex-4-state-management/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

