Re: [flexcoders] hideing a tab in a TabNavigator

2009-01-03 Thread Manish Jethani
On Sat, Jan 3, 2009 at 12:15 PM, Tracy Spratt wrote: > I would use a TabBar whose dataProvider content was dynamically driven, to > show or hide tabs as desired. I would have that TabBar drive a Viewstack. That's another option, but let's not forget that a TabNavigator is more than just a TabBar

RE: [flexcoders] hideing a tab in a TabNavigator

2009-01-02 Thread Tracy Spratt
: Friday, January 02, 2009 6:49 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] hideing a tab in a TabNavigator editing the display list is a way, or simply trying to set the tabNav children visible to true/false is also a goal you can create your UI with a method, and so perform

Re: [flexcoders] hideing a tab in a TabNavigator

2009-01-02 Thread Mario Vieira
editing the display list is a way, or simply trying to set the tabNav children visible to true/false is also a goal you can create your UI with a method, and so perform checks to see who will be added at run time or not you can create item renderers that uses XML, and perform further checks

Re: [flexcoders] hideing a tab in a TabNavigator

2009-01-01 Thread Manish Jethani
On Wed, Dec 31, 2008 at 8:16 PM, btroop202 wrote: > How can I hide a with AS3 when a if condition is true. So it would > show in the TabNavigator sometimes. The only way to do that is to remove the child from the TabNavigator (and add it back later). You can disable the tab though by setting 'en

[flexcoders] hideing a tab in a TabNavigator

2008-12-31 Thread btroop202
How can I hide a with AS3 when a if condition is true. So it would show in the TabNavigator sometimes.