1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<mx:TabNavigator id="myTabNav" x="10" y="10" width="592" height="470">
<mx:Canvas label="Marketing Direct" width="100%" height="100%">
<mx:Label x="10" y="10" width="279" height="26" text="Explications sur le catalogue des opérations ..."/>
<mx:Panel x="41" y="44" width="135" height="141" layout="absolute" title="Catalogue">
<mx:Button x="10" y="10" label="Catalogue 1" click="myTabNav.selectedIndex = 1"/>
<mx:Button x="10" y="40" label="Catalogue 2"/>
<mx:Button x="10" y="70" label="Catalogue 3"/>
</mx:Panel>
<mx:Label x="10" y="214" text="Si vous souhaitez modifier le texte,"/>
<mx:Label x="222" y="214" text="«*cliquer ici pour en savoir plus*»"/>
</mx:Canvas>
<mx:Canvas label="Catalogue 1" width="100%" height="100%" id="catalogue1">
</mx:Canvas>
<mx:Canvas label="Catalogue 2" width="100%" height="100%" id="catalogue2">
</mx:Canvas>
<mx:Canvas label="Catalogue 3" width="100%" height="100%" id="catalogue3">
</mx:Canvas>
</mx:TabNavigator> |
Partager