LoadingPopUp.mxml 971 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:TitleWindow
  3. xmlns:mx="http://www.adobe.com/2006/mxml"
  4. layout="vertical" width="340" height="160"
  5. title="{resourceManager.getString('labels', 'acquire.loadingAcquisitiontrasnfertTitle')}"
  6. showCloseButton="true"
  7. horizontalAlign="center" verticalAlign="middle"
  8. horizontalScrollPolicy="off" verticalScrollPolicy="off"
  9. addedEffect="Fade" removedEffect="Zoom">
  10. <mx:Script source="../../../scripts/physician/acquire/loadingPopUp.as" />
  11. <mx:Spacer height="25" />
  12. <mx:ProgressBar id="progress" mode="manual" minimum="0" maximum="100" labelPlacement="center" label="Progression %3%%" color="#000000" />
  13. <mx:Label text="{message}" />
  14. <mx:Spacer height="100%" />
  15. <mx:Box width="100%" horizontalAlign="right">
  16. <mx:LinkButton id="action" label="{resourceManager.getString( 'labels', 'acquire.popUp.hide' )}" visible="false" click="{this.closeHandler()}" />
  17. </mx:Box>
  18. </mx:TitleWindow>