dont know if you saw my suggestion.... but add this bit of script to your test
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="hideTab1()"> <mx:Script> import mx.controls.Button; private function hideTab1():void { var button1:Button = tn.getTabAt(1); button1.visible = false; button1.includeInLayout = false; } </mx:Script> --- In [email protected], "KP" <[EMAIL PROTECTED]> wrote: > > In Below code can we hide tab 1 on creation complete event I don't want to > remove child I just want to hide. > > > > <?xml version="1.0"?> > <!-- Simple example to demonstrate the TabNavigator layout container. --> > <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> > > <mx:Panel title="TabNavigator Container Example" height="90%" > width="90%" > paddingTop="10" paddingLeft="10" paddingRight="10" > paddingBottom="10"> > > <mx:Label width="100%" color="blue" > text="Select the tabs to change the panel."/> > > <mx:TabNavigator id="tn" width="100%" height="100%"> > <!-- Define each panel using a VBox container. --> > > <mx:VBox label="Panel 1"> > <mx:Label text="TabNavigator container panel 1"/> > </mx:VBox> > > <mx:VBox label="Panel 2"> > <mx:Label text="TabNavigator container panel 2"/> > </mx:VBox> > > <mx:VBox label="Panel 3"> > <mx:Label text="TabNavigator container panel 3"/> > </mx:VBox> > </mx:TabNavigator> > > <mx:Label width="100%" color="blue" > text="Programmatically select the panel using a Button > control."/> > > <mx:HBox> > <mx:Button label="Select Tab 1" click="tn.selectedIndex=0"/> > <mx:Button label="Select Tab 2" click="tn.selectedIndex=1"/> > <mx:Button label="Select Tab 3" click="tn.selectedIndex=2"/> > </mx:HBox> > > </mx:Panel> > > </mx:Application> > -- 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/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/flexcoders/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> 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/

