<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Changing tab alignment within a Flex TabNavigator container</title>
	<link>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/</link>
	<description>A bunch of examples for Adobe Flex and ActionScript</description>
	<pubDate>Tue, 06 Jan 2009 07:33:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-6707</link>
		<author>peterd</author>
		<pubDate>Wed, 06 Feb 2008 21:41:28 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-6707</guid>
		<description>Sathyan,

You may want to look into using a TabBar control and a ViewStack container, something like the following:
&lt;pre class="code"&gt;
&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"&#62;

    &#60;mx:HBox&#62;
        &#60;mx:TabBar direction="vertical" dataProvider="{vs}" /&#62;
        &#60;mx:ViewStack id="vs" width="400" height="300"&#62;
            &#60;mx:VBox label="One" backgroundColor="haloSilver"&#62;
                &#60;mx:Label text="One..." /&#62;
            &#60;/mx:VBox&#62;
            &#60;mx:VBox label="Two" backgroundColor="haloOrange"&#62;
                &#60;mx:Label text="Two..." /&#62;
            &#60;/mx:VBox&#62;
            &#60;mx:VBox label="Three" backgroundColor="haloBlue"&#62;
                &#60;mx:Label text="Three..." /&#62;
            &#60;/mx:VBox&#62;
        &#60;/mx:ViewStack&#62;
    &#60;/mx:HBox&#62;

&#60;/mx:Application&#62;
&lt;/pre&gt;

Or you may also want to look at Doug McCune'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-6684</link>
		<author>Sathyan</author>
		<pubDate>Wed, 06 Feb 2008 07:41:35 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-6684</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-6683</link>
		<author>Sathyan</author>
		<pubDate>Wed, 06 Feb 2008 07:04:08 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-6683</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-1685</link>
		<author>peterd</author>
		<pubDate>Mon, 10 Sep 2007 17:12:56 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-1685</guid>
		<description>FlexLover,

I'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-1683</link>
		<author>FlexLover</author>
		<pubDate>Mon, 10 Sep 2007 16:56:27 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/09/changing-tab-alignment-within-a-flex-tabnavigator-container/#comment-1683</guid>
		<description>I'm loocking for this example: large text which flows in multiples size definites texFields columns (like newspaper).

Tank'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>
