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