BottomMenu.mxml 1008 B

123456789101112131415
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:ViewStack
  3. xmlns:mx="http://www.adobe.com/2006/mxml"
  4. creationComplete="creationComplete()"
  5. change="navigateIntoBottomMenu()"
  6. creationPolicy="all">
  7. <mx:Script source="../../scripts/menus/bottomMenu.as" />
  8. <mx:VBox label="{resourceManager.getString('labels', 'terms')}" toolTip="{resourceManager.getString('labels', 'label.feature.available.later')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown"/>
  9. <!--mx:VBox label="{resourceManager.getString('labels', 'sitemap')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown"/-->
  10. <mx:VBox label="{resourceManager.getString('labels', 'privacy')}" toolTip="{resourceManager.getString('labels', 'label.feature.available.later')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown"/>
  11. <mx:VBox label="{resourceManager.getString('labels', 'group')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown"/>
  12. </mx:ViewStack>