AboutView.mxml 639 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:VBox
  3. xmlns:mx="http://www.adobe.com/2006/mxml"
  4. xmlns:helpers="com.imt.intimamedia.helpers.*"
  5. label="{resourceManager.getString('labels', 'about')}"
  6. horizontalAlign="center" paddingTop="150" paddingLeft="200"
  7. fontSize="15" fontWeight="bold"
  8. verticalScrollPolicy="auto" horizontalScrollPolicy="off">
  9. <mx:VBox width="650" paddingBottom="50">
  10. <mx:Text htmlText="{resourceManager.getString( 'labels', 'aboutUsFirstText' )}" />
  11. </mx:VBox>
  12. <mx:VBox width="650">
  13. <mx:Text htmlText="{resourceManager.getString( 'labels', 'aboutUsSecondText' )}" />
  14. </mx:VBox>
  15. </mx:VBox>