I have a tab navigator which contains the 4 tabs Account, Configuration, System and Dashboard. In the Configuration tab there is a button labeled add new config. If the user clicks this button the system tab should open - how to do this?

link|improve this question

44% accept rate
Will you provide some code that you had done so far.. so that we can get idea that what you want to do. – Sagar Rawal Jan 17 at 6:18
actually other codes are done in two pages i just want to open that system tab for the " set new config" button on congifuration tab.. – Aritra Jan 17 at 6:20
feedback

1 Answer

up vote 0 down vote accepted
<mx1:TabNavigator width="50%" height="50%" id="tabnav">

    <mx1:VBox label="Account" width="20%" height="20%">

    </mx1:VBox>
    <mx1:VBox label="Configuration" width="20%" height="20%">
        <s:Button id="c" click="c_clickHandler(event)" label="new config"/>
    </mx1:VBox>
    <mx1:VBox label="System" width="20%" height="20%">

    </mx1:VBox>
    <mx1:VBox label="Dash board" width="20%" height="20%">

    </mx1:VBox>

</mx1:TabNavigator>


protected function c_clickHandler(event:MouseEvent):void
   {
     tabnav.selectedIndex = 2;
   }
link|improve this answer
in my project i already took a view stack and a button bar in the button bar there are Account,Configuration,System and dashboard so i want to redirect to sytem tab when the users click the button "set new config" in configuration tab so the above example wont wrk for button bar – Aritra Jan 17 at 6:42
@aritra above example is good enough to dynamically select tab in tab navigator. If you want something else than this.. show some code what you have tried and why it is not working? – M.S.Nayak Jan 17 at 6:54
pls show your code – rejo Jan 17 at 7:13
its working thanks all respect – Aritra Jan 17 at 7:22
just one query i have the view stack in a package where as all components (configuration,account,dashboard,system) mxmls are in differet package how to call that view stack by id?? i tried flexglobal.toplevelapplication is not working – Aritra Jan 17 at 7:25
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.