| 123456789101112131415161718192021 |
- <?xml version="1.0" encoding="utf-8"?>
- <mx:TitleWindow
- xmlns:mx="http://www.adobe.com/2006/mxml"
- layout="vertical" width="600" height="300"
- addedEffect="Fade" removedEffect="Fade"
- showCloseButton="true"
- title="{resourceManager.getString('labels', 'sharedDatabase')}"
- close="closeHandler()">
-
- <mx:Script source="../../../scripts/general/register/applicationDatabaseTermsPopUp.as" />
-
- <mx:VBox width="100%" verticalGap="0" paddingTop="10">
-
- <mx:Text htmlText="{resourceManager.getString('labels', 'databaseTerms')}"/>
- <mx:HBox width="100%" horizontalAlign="center">
- <mx:Button click="closeHandler()" label="{resourceManager.getString('labels', 'close')}"/>
- </mx:HBox>
-
- </mx:VBox>
-
- </mx:TitleWindow>
|