| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Canvas
- xmlns:mx="http://www.adobe.com/2006/mxml"
- label="{resourceManager.getString('labels', 'home')}"
- width="100%" height="100%"
- hideEffect="WipeUp" showEffect="WipeDown">
-
- <mx:Zoom id="learnMoreAdd" startDelay="50"/>
-
- <mx:Parallel id="learnMoreRemove">
- <mx:Zoom />
- <mx:Fade />
- </mx:Parallel>
-
- <mx:Script source="../../../scripts/general/home/homeView.as" />
-
- <mx:Image id="screens" source="@Embed('images/home/screens.png')" verticalCenter="-20" />
-
- <mx:Image source="@Embed('images/general/pictoGrey.png')" top="5" right="620" />
- <mx:VBox top="10" right="20" verticalGap="1">
- <mx:Text htmlText="{resourceManager.getString('labels', 'presentation')}" paddingRight="15" selectable="false" width="590" height="100%" styleName="presentationInGeneralPage" />
- <mx:HBox width="100%" horizontalAlign="center" paddingTop="10" paddingRight="10" verticalGap="0">
- <mx:Button label="{resourceManager.getString('labels', 'learnMore')}" click="showLearnMore()"/>
- </mx:HBox>
- </mx:VBox>
-
- <mx:Canvas width="610" height="150" bottom="145" right="20"
- horizontalScrollPolicy="off" verticalScrollPolicy="off">
-
- <mx:SWFLoader source="@Embed('swf/physicianBanner.swf')" width="100%" height="100%" mouseOver="rollOverBanner(event)" />
- <mx:Text htmlText="{resourceManager.getString('labels', 'physicianDeclaration')}" selectable="false" visible="{_physicianVisible}" left="290" width="100%" styleName="declarationsInGeneralPage" hideEffect="Fade" showEffect="Fade" />
- <mx:Button label="{resourceManager.getString('labels', 'enter')}" visible="{_physicianVisible}" bottom="25" right="15" hideEffect="Fade" showEffect="Fade" click="displayPhysicianLogin()" />
-
- <mx:Label text="{resourceManager.getString('labels', 'connection')}" top="10" left="10" visible="{!_physicianVisible}" styleName="titlePanel" hideEffect="Fade" showEffect="Fade" />
-
- <mx:Form top="20" width="100%" visible="{!_physicianVisible}" hideEffect="Fade" showEffect="Fade">
- <mx:FormItem label="{resourceManager.getString('labels', 'mail')}" required="true">
- <mx:HBox verticalAlign="middle">
- <mx:TextInput id="physicianLogin" tabIndex="1" width="160" text="{ApplicationModelLocator.getInstance().sharedObject.data.physicianLogin}" focusOut="focusOutPhysicianLogin(event)" />
- <mx:CheckBox label="{resourceManager.getString('labels', 'rememberMe')}" tabIndex="4" selected="{ApplicationModelLocator.getInstance().sharedObject.data.physicianRememberMe}" change="rememberPhysicianLogin(event)" />
- </mx:HBox>
- </mx:FormItem>
- <mx:FormItem label="{resourceManager.getString('labels', 'password')}" required="true">
- <mx:HBox verticalAlign="middle">
- <mx:TextInput id="physicianPassword" tabIndex="2" width="160" displayAsPassword="true" enter="connect()" />
- <mx:LinkButton label="{resourceManager.getString('labels', 'forgottenPassword')}" tabIndex="5" click="sendPassword( physicianLogin.text )" />
- </mx:HBox>
- </mx:FormItem>
- <mx:FormItem>
- <mx:Button label="{resourceManager.getString('labels', 'login')}" tabIndex="3" click="connect()" width="120" />
- </mx:FormItem>
- </mx:Form>
-
- <mx:LinkButton label="{resourceManager.getString('labels', 'back')}" top="10" visible="{!_physicianVisible}" horizontalCenter="0" hideEffect="Fade" showEffect="Fade" click="resetDisplay()" />
-
- <mx:Label text="{resourceManager.getString('labels', 'register')}" top="10" left="390" visible="{!_physicianVisible}" styleName="titlePanel" hideEffect="Fade" showEffect="Fade" />
-
- <mx:Button label="{resourceManager.getString('labels', 'createAccount')}" width="150" top="65" right="40" visible="{!_physicianVisible}" hideEffect="Fade" showEffect="Fade" click="register(true)" />
- </mx:Canvas>
- <mx:Label text="{resourceManager.getString('labels', 'physicianLabel')}" visible="{_physicianVisible}" bottom="140" right="220" styleName="legalMentionsInGeneralPage" hideEffect="Fade" showEffect="Fade" />
-
- <mx:Canvas width="610" height="150" bottom="3" right="20"
- horizontalScrollPolicy="off" verticalScrollPolicy="off">
- <!--mx:SWFLoader source="@Embed('swf/clinicalBanner.swf')" width="100%" height="100%" click="redirectToImtDemo()" /-->
- <mx:SWFLoader source="@Embed('swf/clinicalBanner.swf')" width="100%" height="100%" />
- <mx:Text htmlText="{resourceManager.getString('labels', 'clinicalDeclaration')}" styleName="declarationsInGeneralPage" left="290" hideEffect="Fade" showEffect="Fade" />
- </mx:Canvas>
-
- </mx:Canvas>
|