<?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: Changing tab alignment within a Flex TabNavigator container</title>
	<atom:link href="http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/</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: peterd</title>
		<link>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/comment-page-1/#comment-990</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Wed, 06 Feb 2008 21:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-990</guid>
		<description>Sathyan,

You may want to look into using a TabBar control and a ViewStack container, something like the following:
&lt;pre class=&quot;code&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
        layout=&quot;vertical&quot;&gt;

    &lt;mx:HBox&gt;
        &lt;mx:TabBar direction=&quot;vertical&quot; dataProvider=&quot;{vs}&quot; /&gt;
        &lt;mx:ViewStack id=&quot;vs&quot; width=&quot;400&quot; height=&quot;300&quot;&gt;
            &lt;mx:VBox label=&quot;One&quot; backgroundColor=&quot;haloSilver&quot;&gt;
                &lt;mx:Label text=&quot;One...&quot; /&gt;
            &lt;/mx:VBox&gt;
            &lt;mx:VBox label=&quot;Two&quot; backgroundColor=&quot;haloOrange&quot;&gt;
                &lt;mx:Label text=&quot;Two...&quot; /&gt;
            &lt;/mx:VBox&gt;
            &lt;mx:VBox label=&quot;Three&quot; backgroundColor=&quot;haloBlue&quot;&gt;
                &lt;mx:Label text=&quot;Three...&quot; /&gt;
            &lt;/mx:VBox&gt;
        &lt;/mx:ViewStack&gt;
    &lt;/mx:HBox&gt;

&lt;/mx:Application&gt;
&lt;/pre&gt;

Or you may also want to look at Doug McCune&#039;s SuperTabNavigator control: http://dougmccune.com/flexlib/keynote/ and http://dougmccune.com/blog/2007/02/07/quest-for-the-perfect-tabnavigator-part-3-with-source/.

Peter</description>
		<content:encoded><![CDATA[<p>Sathyan,</p>
<p>You may want to look into using a TabBar control and a ViewStack container, something like the following:</p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"&gt;

    &lt;mx:HBox&gt;
        &lt;mx:TabBar direction="vertical" dataProvider="{vs}" /&gt;
        &lt;mx:ViewStack id="vs" width="400" height="300"&gt;
            &lt;mx:VBox label="One" backgroundColor="haloSilver"&gt;
                &lt;mx:Label text="One..." /&gt;
            &lt;/mx:VBox&gt;
            &lt;mx:VBox label="Two" backgroundColor="haloOrange"&gt;
                &lt;mx:Label text="Two..." /&gt;
            &lt;/mx:VBox&gt;
            &lt;mx:VBox label="Three" backgroundColor="haloBlue"&gt;
                &lt;mx:Label text="Three..." /&gt;
            &lt;/mx:VBox&gt;
        &lt;/mx:ViewStack&gt;
    &lt;/mx:HBox&gt;

&lt;/mx:Application&gt;
</pre>
<p>Or you may also want to look at Doug McCune&#8217;s SuperTabNavigator control: <a href="http://dougmccune.com/flexlib/keynote/" rel="nofollow">http://dougmccune.com/flexlib/keynote/</a> and <a href="http://dougmccune.com/blog/2007/02/07/quest-for-the-perfect-tabnavigator-part-3-with-source/" rel="nofollow">http://dougmccune.com/blog/2007/02/07/quest-for-the-perfect-tabnavigator-part-3-with-source/</a>.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sathyan</title>
		<link>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/comment-page-1/#comment-989</link>
		<dc:creator>Sathyan</dc:creator>
		<pubDate>Wed, 06 Feb 2008 07:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-989</guid>
		<description>Hello Peter
Your examples are very helpful.To be frank, I was looking for a TabNavigator with tabs on the right hand side instead of above. Can you help me on this.
 Forgot to mention one thing. The tab should be turned 90 degree.</description>
		<content:encoded><![CDATA[<p>Hello Peter<br />
Your examples are very helpful.To be frank, I was looking for a TabNavigator with tabs on the right hand side instead of above. Can you help me on this.<br />
 Forgot to mention one thing. The tab should be turned 90 degree.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sathyan</title>
		<link>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/comment-page-1/#comment-991</link>
		<dc:creator>Sathyan</dc:creator>
		<pubDate>Wed, 06 Feb 2008 07:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-991</guid>
		<description>Hello Peter
   Your examples are very helpful.To be frank, I was looking for a TabNavigator with tabs on the right hand side instead of above. Can you help me on this.</description>
		<content:encoded><![CDATA[<p>Hello Peter<br />
   Your examples are very helpful.To be frank, I was looking for a TabNavigator with tabs on the right hand side instead of above. Can you help me on this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/comment-page-1/#comment-987</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Mon, 10 Sep 2007 17:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-987</guid>
		<description>FlexLover,

I&#039;ve never tried the example, but I believe the Programming ActionScript 3.0 book has an example of wrapping text between text fields. For more information, see: &lt;u&gt;http://livedocs.adobe.com/flash/9.0/main/00000236.html&lt;/u&gt;

Hope that helps,

Peter</description>
		<content:encoded><![CDATA[<p>FlexLover,</p>
<p>I&#8217;ve never tried the example, but I believe the Programming ActionScript 3.0 book has an example of wrapping text between text fields. For more information, see: <u><a href="http://livedocs.adobe.com/flash/9.0/main/00000236.html" rel="nofollow">http://livedocs.adobe.com/flash/9.0/main/00000236.html</a></u></p>
<p>Hope that helps,</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FlexLover</title>
		<link>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/comment-page-1/#comment-988</link>
		<dc:creator>FlexLover</dc:creator>
		<pubDate>Mon, 10 Sep 2007 16:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-988</guid>
		<description>I&#039;m loocking for this example: large text which flows in multiples size definites texFields columns (like newspaper).

Tank&#039;you in advance.</description>
		<content:encoded><![CDATA[<p>I&#8217;m loocking for this example: large text which flows in multiples size definites texFields columns (like newspaper).</p>
<p>Tank&#8217;you in advance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

