Hi again, I tried your sample, and the tabs of two TabNavigator have the same colors, it seems that the fillColors attribute is ignored.
This is the code I tried: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" width="100%" height="100%"> <mx:TabNavigator id="first" width="50%" height="30%" fillColors="[0xEE00FF,0xFFFFFF]"> <mx:HBox width="50%" height="30%" label="one"/> <mx:HBox width="50%" height="30%" label="two"/> <mx:HBox width="50%" height="30%" label="three"/> </mx:TabNavigator> <mx:TabNavigator id="second" width="50%" height="30%" fillColors="[0xFFEE00,0xFFFFFF]"> <mx:HBox width="50%" height="30%" label="one"/> <mx:HBox width="50%" height="30%" label="two"/> <mx:HBox width="50%" height="30%" label="three"/> </mx:TabNavigator> </mx:Application> Any ideas? Thanks, Jose 2005/10/18, Deepa Subramaniam <[EMAIL PROTECTED]>: > The fillColors style can be set on the TabNavigator itself and will > affect the tabs for that TabNavigator. > > So, you can set the fillColors style in the mxml tag for each > TabNavigator in your application. Something like: > > <mx:TabNavigator id="first" fillColors="[0xEEFF00,0xFFFFFF]" /> > > > <mx:TabNavigator id="second" fillColors="[0xFFEE00,0xFFFFFF]" /> > > -deepa > -----Original Message----- > From: [email protected] [mailto:[EMAIL PROTECTED] On > Behalf Of Jose Quiles > Sent: Tuesday, October 18, 2005 10:17 AM > To: [email protected] > Subject: [flexcoders] TabNavigator styles > > Hi, > > I have two TabNavigator on the same application, and I need to use > different fill colors for the Tabs on each of them. > > Anyone knows how to do it? > > Thanks a lot! > Jose > > > > -- > 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 > > > > > > > > > > > -- > 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 > > > > > > > > > ------------------------ Yahoo! Groups Sponsor --------------------~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM --------------------------------------------------------------------~-> -- 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/

