You may need to "fake it" by using the child container to overlap the top rounded corners by adjusting paddingTop of the TabNavigator, like this:
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:TabNavigator x="401" y="361" width="200" height="200" cornerRadius="10" paddingTop="0" borderThickness="0" paddingBottom="10"> <mx:Canvas label="Tab 1" width="100%" height="100%" backgroundColor="#ffffff"> </mx:Canvas> </mx:TabNavigator> </mx:Application> Depending on what you're trying to do, this may/may not be the solution you're looking for. Juan Sanchez scalenine.com // Degrafa Beta Now Available : http://www.degrafa.com --- In [email protected], "thebeginnersmind" <[EMAIL PROTECTED]> wrote: > > Hi list, > > Does anyone know if there is a way to set cornerRadius of Tab > Navigator to only bottom left and bottom right corners ? ( when I use > the below code , the cornerRadius applies to all 4 corners) > > // css file > TabNavigator { > > cornerRadius: 10; > > } > > Thanks! > -Kt >

