Hi Sreejith, > Infact the question is very simple. > > How do you set corner-radius = 10 to one TabNavigator and corner- radius > = 0 on another in the same application! > I've given up! :-( >
have you tried Matt's recommendation i.e. use the styleName property? eg (btw i added your stylesheet entries (MyTabNavigator and MyTab) into main.css) <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> <mx:Style source="main.css"/> <mx:VBox> <mx:TabNavigator width="100%" height="50%" styleName="MyTabNavigator"> <mx:HBox label="Tab title 1"> <mx:TextInput text="Text1"/> </mx:HBox> <mx:HBox label="Tab title 2"> <mx:TextInput text="Text2"/> </mx:HBox> </mx:TabNavigator> <mx:TabNavigator width="100%" height="50%" styleName="MyTab"> <mx:HBox label="Tab title 1" > <mx:TextInput text="Text1"/> </mx:HBox> <mx:HBox label="Tab title 2"> <mx:TextInput text="Text2"/> </mx:HBox> </mx:TabNavigator> </mx:VBox> </mx:Application> regards bod -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/