ApplicationTermsPopUp.mxml 844 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:TitleWindow
  3. xmlns:mx="http://www.adobe.com/2006/mxml"
  4. layout="vertical" width="800" height="600"
  5. addedEffect="Fade" removedEffect="Fade"
  6. showCloseButton="true"
  7. title="{resourceManager.getString('labels', 'termsOfUse')}"
  8. close="closeHandler()"
  9. verticalScrollPolicy="auto"
  10. creationComplete="creationCompleteHandler()">
  11. <mx:Script source="../../../scripts/general/register/applicationTermsPopUp.as" />
  12. <mx:VBox id="condBox" width="100%" verticalGap="0" horizontalAlign="center">
  13. <mx:Text id="licence" width="100%" textAlign="left" htmlText="{_termsText}" />
  14. <mx:Spacer height="10"/>
  15. <mx:Button id="btnCloseCond" width="80" click="closeHandler()" label="{resourceManager.getString('labels', 'close')}"/>
  16. <mx:Spacer height="10"/>
  17. </mx:VBox>
  18. </mx:TitleWindow>