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