я создаю оконное приложение в FLEX3 с Adobe Flash Builder 4.7Flex4 - Использование ButtonBar перемещаться из одного .mxml файла в другой
У меня есть два .mxml файлов (Main.mxml и Home.mxml)
в Main.mxml у меня есть ButtonBar, когда пользователь нажимает на главном ButtonBar, я хочу, чтобы пользователь будет перенаправлен на Home.mxml
Я это для прибегая к помощи некоторое время теперь, и нет четкого ответа на этот ,
Я просмотрел ViewStack и TabNavigator и Штаты, я не уверен, что это то, что я ищу.
Вот мой Main.mxml Файл
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
applicationComplete="init()"
showStatusBar="false">
<fx:Declarations></fx:Declarations>
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
s|ButtonBar s|ButtonBarButton:upAndSelected,
s|ButtonBar s|ButtonBarButton:overAndSelected,
s|ButtonBar s|ButtonBarButton:downAndSelected,
s|ButtonBar s|ButtonBarButton:disabledAndSelected {
chromeColor: #666666;
color: #FFFFFF;
fontSize: 32;
}
s|ButtonBar {
chromeColor: #000000;
color: #FFFFFF;
fontSize: 32;
bottom: 0;
typographicCase: uppercase;
}
</fx:Style>
<s:ButtonBar width="100%" height="13%">
<mx:ArrayCollection>
<fx:String>Home</fx:String>
</mx:ArrayCollection>
</s:ButtonBar>
</s:WindowedApplication>
и вот мой Home.mxml файл
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Label text="Here"/>
</s:WindowedApplication>
Пожалуйста, помогите
Сделайте TabNavigator с двумя вкладками, чтобы вам не приходилось обращаться с кнопками. – Organis