Código Flex :
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"> <mx:Script> <![CDATA[ public var SeccionActual:String=''; //Recibe la seccion a la que se debe cambiar private function CambiarSeccion(Seccion:String):void { trace (Seccion); SeccionActual=Seccion; } ]]> </mx:Script> <mx:TabNavigator id="Secciones" x="10" y="10" width="523" height="647"> <mx:Canvas label="uno" width="100%" height="100%"> <mx:Label x="10" y="10" text="1"/> </mx:Canvas> <mx:Canvas label="Dos" width="100%" height="100%"> <mx:Label x="10" y="10" text="2"/> </mx:Canvas> <mx:Canvas label="tres" width="100%" height="100%"> <mx:Label x="31" y="10" text="3"/> </mx:Canvas> </mx:TabNavigator> </mx:Application>