| 12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="utf-8"?>
- <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
- horizontalAlign="center">
- <mx:Script>
- <![CDATA[
- [Embed(source="images/patient/sign_woman.png")]
- [Bindable]
- public var woman : Class;
-
- [Embed(source="images/patient/sign_man.png")]
- [Bindable]
- public var man : Class;
-
- override public function set data(value:Object):void
- {
- super.data = value;
-
- if( data.sex == "F" )
- {
- image.source = woman;
- } else {
- image.source = man;
- }
- }
- ]]>
- </mx:Script>
-
- <mx:Image id="image" />
-
- </mx:VBox>
|