I'm having the hardest time finding a way to simply add rounded tabs to a TabNavigator control.

I have seen examples which seem to be really simple but they don't seem to work in Flex 4.5. Here is some sample code:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"     minHeight="600">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Style source="style.css"/>

<mx:TabNavigator x="93" y="90" width="571" height="293" tabStyleName="tabstyle">
    <s:NavigatorContent width="100%" height="100%" label="Tab 1">
    </s:NavigatorContent>
</mx:TabNavigator>
</s:Application>

and the css:

/* CSS file */
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";

.tabstyle
{
corner-radius: 10;
}

I have also tried cornerRadius: 10;

Any ideas why this does not work? Any easy to follow solution (I'm a beginner).

Thanks.

link|improve this question
feedback

2 Answers

Try this!

<mx:TabNavigator id="tabNavigator" tabOffset="20" cornerRadius="10" height="100%" width="100%">
link|improve this answer
I'v tried the cornerRadius but it only sets a radius on the content area not the tabs. – user1003505 Oct 20 '11 at 20:23
feedback

You could create a skin for your app/tab navigator, use the 'create copy of' option in Flash Builder, and in the Rect section, set the radiusX, radiusY values. Then use that skin for the component

link|improve this answer
Sorry I'm really not very experienced here. I have created skin copies for Spark components before but I have not had any luck creating a skin copy for a mx control. Could you walk me through the steps to create the skin copy and then apply it to the mx:TabNavigator control? – user1003505 Oct 20 '11 at 20:22
It cant be done for mx controls, sorry. This is a perfect workaround: devgirl.org/2009/11/16/tabbed-navigation-in-flex-4 – Brian Bishop Oct 21 '11 at 9:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.