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