| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <?xml version="1.0" encoding="utf-8"?>
- <mx:VBox
- xmlns:mx="http://www.adobe.com/2006/mxml"
- xmlns:helpers="com.imt.intimamedia.helpers.*"
- xmlns:components="com.hillelcoren.components.*"
- horizontalAlign="center" verticalAlign="top"
- verticalScrollPolicy="auto" horizontalScrollPolicy="off"
- creationComplete="initListeners()"
- paddingTop="10" paddingLeft="50" paddingRight="10">
-
- <mx:Script source="../../../scripts/general/register/registerView.as" />
-
- <mx:EmailValidator id="mailValidator" source="{mailTextInput}" property="text" trigger="{mailTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="passwordValidator" source="{passwordTextInput}" maxLength="60" property="text" trigger="{passwordTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <helpers:PasswordValidator id="confirmPasswordValidator" maxLength="60" originalPassword="{passwordTextInput.text}" source="{confirmPasswordTextInput}" property="text" trigger="{confirmPasswordTextInput}" triggerEvent="focusOut" message="{resourceManager.getString('labels', 'passwordsDifferent')}" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="answerOneValidator" source="{answerOneTextInput}" maxLength="99" property="text" trigger="{answerOneTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="answerTwoValidator" source="{answerTwoTextInput}" maxLength="99" property="text" trigger="{answerTwoTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="hospitalValidator" source="{hospitalTextInput}" maxLength="49" property="text" trigger="{hospitalTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="invoiceAddressValidator" maxLength="99" source="{invoiceAddressTextInput}" property="text" trigger="{invoiceAddressTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="shippingAddressValidator" maxLength="99" source="{shippingAddressTextInput}" property="text" trigger="{shippingAddressTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="cityValidator" source="{cityTextInput}" maxLength="29" property="text" trigger="{cityTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="zipCodeValidator" source="{zipCodeTextInput}" maxLength="9" property="text" trigger="{zipCodeTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:NumberValidator id="questionOneValidator" source="{questionOneComboBox}" property="selectedIndex" minValue="0" lowerThanMinError="{resourceManager.getString('labels', 'required')}" trigger="{questionOneComboBox}" triggerEvent="close" />
- <mx:NumberValidator id="questionTwoValidator" source="{questionTwoComboBox}" property="selectedIndex" minValue="0" lowerThanMinError="{resourceManager.getString('labels', 'required')}" trigger="{questionTwoComboBox}" triggerEvent="close" />
- <mx:NumberValidator id="countryValidator" source="{countryComboBox}" property="selectedIndex" minValue="0" lowerThanMinError="{resourceManager.getString('labels', 'required')}" trigger="{countryComboBox}" triggerEvent="close" />
- <mx:StringValidator id="phoneCenterValidator" source="{phoneCenterTextInput}" maxLength="14" property="text" trigger="{phoneCenterTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="lastNameValidator" source="{lastNameTextInput}" maxLength="49" property="text" trigger="{lastNameTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="firstNameValidator" source="{firstNameTextInput}" maxLength="49" property="text" trigger="{firstNameTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="phoneValidator" source="{phoneTextInput}" maxLength="14" property="text" trigger="{phoneTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:NumberValidator id="activityValidator" source="{activityComboBox}" property="selectedIndex" minValue="0" lowerThanMinError="{resourceManager.getString('labels', 'required')}" trigger="{activityComboBox}" triggerEvent="close" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="otherActivityValidator" source="{otherActivityTextInput}" property="text" trigger="{otherActivityTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="brandValidator" source="{brandTextInput}" maxLength="99" property="text" trigger="{brandTextInput}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:NumberValidator id="frequencyValidator" source="{frequencyNumericStepper}" property="value" trigger="{frequencyNumericStepper}" triggerEvent="focusOut" requiredFieldError="{resourceManager.getString('labels', 'required')}" />
- <mx:StringValidator id="licenceAgreeValidator" source="{licenceAgreeCheckBox}" required="true" property="selected" requiredFieldError="{resourceManager.getString('labels', 'checkLicence')}" tooLongError="{resourceManager.getString('labels', 'checkLicence')}" />
- <mx:StringValidator id="physicianAgreeValidator" source="{physicianAgreeCheckBox}" required="true" property="selected" requiredFieldError="{resourceManager.getString('labels', 'checkAgreePhysician')}" tooLongError="{resourceManager.getString('labels', 'checkAgreePhysician')}" />
-
- <mx:HBox width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
- <mx:VBox width="30" height="100%" styleName="containerZone" click="actionOnZones(event, 'ZoneOne')">
- <mx:LinkButton id="partOne" visible="{_partOneValid}" styleName="statusIcon" click="actionOnZonesFromErrors(event, 'ZoneOne')" />
- </mx:VBox>
- <helpers:WindowShade id="ids" label="{resourceManager.getString('labels', 'titleLogin')}" width="100%" opened="true" styleName="titlePanelDynamic" click="actionOnZones(event, 'ZoneOne')">
- <mx:Canvas styleName="containerRedCompact" height="130" width="100%">
-
- <mx:HBox styleName="containerRedContent" height="120" width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
-
- <mx:VBox width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
- <mx:Spacer height="3" />
-
- <mx:FormItem id="mailLabel" required="true" label="{resourceManager.getString('labels', 'email')}" labelWidth="200" width="100%">
- <helpers:TextInputWithSkin id="mailTextInput" maxChars="49" tabIndex="1" restrict="A-Z a-z\\0-9\\@\\.\\_\-\\" width="100%" styleName="textInput" />
- </mx:FormItem>
-
- <mx:FormItem id ="passwordLabel" required="true" label="{resourceManager.getString('labels', 'password')}" labelWidth="200" width="100%">
- <helpers:TextInputWithSkin id="passwordTextInput" tabIndex="2" maxChars="60" displayAsPassword="true" restrict="A-Z a-z\\0-9\\@\\.\\_\-\\" width="100%" change="confirmPasswordTextInput.text = ''" styleName="textInput" />
- </mx:FormItem>
-
- <mx:FormItem id="confirmPasswordLabel" label="{resourceManager.getString('labels', 'confirmPassword')}" required="true" labelWidth="200" width="100%">
- <helpers:TextInputWithSkin id="confirmPasswordTextInput" tabIndex="3" maxChars="60" displayAsPassword="true" restrict="A-Z a-z\\0-9\\@\\.\\_\-\\" width="100%" styleName="textInput" />
- </mx:FormItem>
- </mx:VBox>
-
- <mx:Spacer width="10"/>
-
- <mx:VBox width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
- <mx:Spacer height="100%" />
-
- <mx:FormItem id="questionOneLabel" required="true" label="{resourceManager.getString('labels', 'questionOne')}" labelWidth="110" width="100%">
- <mx:ComboBox id="questionOneComboBox" tabIndex="4" prompt="{resourceManager.getString('labels', 'choose.question')}" selectedIndex="-1" dataProvider="{_model.questionOneArrayCollection}" change="changeQuestion(event, questionTwoComboBox)" width="100%" />
- </mx:FormItem>
-
- <mx:FormItem id="answerOneLabel" label="{resourceManager.getString('labels', 'answerOne')}" required="true" labelWidth="110" width="100%">
- <helpers:TextInputWithSkin id="answerOneTextInput" maxChars="99" tabIndex="5" restrict="A-Z a-z\\0-9\\@\\.\\_\-\\" width="100%" styleName="textInput" />
- </mx:FormItem>
-
- <mx:FormItem id="questionTwoLabel" required="true" label="{resourceManager.getString('labels', 'questionTwo')}" labelWidth="110" width="100%">
- <mx:ComboBox id="questionTwoComboBox" tabIndex="6" prompt="{resourceManager.getString('labels', 'choose.question')}" selectedIndex="-1" dataProvider="{_model.questionTwoArrayCollection}" change="changeQuestion(event, questionOneComboBox)" width="100%" />
- </mx:FormItem>
-
- <mx:FormItem id="answerTwoLabel" label="{resourceManager.getString('labels', 'answerTwo')}" required="true" labelWidth="110" width="100%">
- <helpers:TextInputWithSkin id="answerTwoTextInput" maxChars="99" tabIndex="7" restrict="A-Z a-z\\0-9\\@\\.\\_\-\\" width="100%" styleName="textInput" />
- </mx:FormItem>
- </mx:VBox>
-
- </mx:HBox>
-
- </mx:Canvas>
- </helpers:WindowShade>
- </mx:HBox>
-
- <mx:HBox width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" paddingBottom="0">
- <mx:VBox width="30" height="100%" styleName="containerZone" click="actionOnZones(event, 'ZoneTwo')">
- <mx:LinkButton id="partTwo" visible="{_partTwoValid}" styleName="statusIcon" click="actionOnZonesFromErrors(event, 'ZoneTwo')" />
- </mx:VBox>
-
- <mx:HBox width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
-
- <helpers:WindowShade id="organization" label="{resourceManager.getString('labels', 'titleOrganization')}" width="100%" opened="true" styleName="titlePanelDynamic" click="actionOnZones(event, 'ZoneTwo')">
- <mx:Canvas styleName="containerRedCompact" height="355" width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
-
- <mx:VBox height="340" width="100%" verticalScrollPolicy="off" horizontalScrollPolicy="off" styleName="containerRedContentSync">
-
- <mx:FormItem id="hospitalLabel" required="true" label="{resourceManager.getString('labels', 'hospitalName')}" width="100%" labelWidth="90">
- <helpers:TextInputWithSkin id="hospitalTextInput" maxChars="49" tabIndex="8" width="100%" styleName="textInput" />
- </mx:FormItem>
-
- <mx:FormItem id="countryLabel" required="true" label="{resourceManager.getString('labels', 'country')}" width="100%" labelWidth="90" >
- <mx:ComboBox id="countryComboBox" tabIndex="9" prompt="{resourceManager.getString('labels', 'chooseCountry')}" selectedIndex="-1" change="copyCountry()" dataProvider="{_model.countries}" width="100%" />
- </mx:FormItem>
-
- <mx:FormItem id="zipCodeLabel" required="true" label="{resourceManager.getString('labels', 'zipCode')}" width="100%" labelWidth="90">
- <mx:HBox width="100%" verticalAlign="middle">
- <helpers:TextInputWithSkin id="zipCodeTextInput" tabIndex="10" maxChars="9" width="100%" styleName="textInput" />
- <!--mx:LinkButton icon="@Embed('images/general/search.png')" width="16" click="searchCityWithZipCode()" toolTip="{resourceManager.getString('labels', 'search.country')}" /-->
- </mx:HBox>
- </mx:FormItem>
-
- <mx:FormItem id="cityLabel" required="true" label="{resourceManager.getString('labels', 'city')}" width="100%" labelWidth="90">
- <mx:HBox width="100%" verticalAlign="middle">
- <helpers:TextInputWithSkin id="cityTextInput" tabIndex="11" width="100%" maxChars="29" styleName="textInput" />
- <!--mx:LinkButton icon="@Embed('images/general/search.png')" width="16" click="searchZipCodeWithCity()" toolTip="{resourceManager.getString('labels', 'search.zipcode')}" /-->
- </mx:HBox>
- </mx:FormItem>
-
- <mx:FormItem id="invoiceAddressLabel" required="true" label="{resourceManager.getString('labels', 'addressInvoicing')}" width="100%" labelWidth="90">
- <helpers:TextAreaWithSkin id="invoiceAddressTextInput" tabIndex="12" maxChars="99" width="100%" height="60" styleName="textInput" focusOut="copyAddress(invoiceAddressTextInput.text)" />
- </mx:FormItem>
-
- <mx:HBox width="100%" verticalAlign="middle">
- <mx:Spacer width="100%" />
- <mx:CheckBox id="different" labelPlacement="left" label="{resourceManager.getString('labels', 'addressDifferent')}" styleName="checkBoxForm" width="100%" toolTip="{resourceManager.getString('labels', 'dazzle.delivery')}" click="displayShippingAddress(different.selected)" />
- </mx:HBox>
- <mx:FormItem id="shippingAddressLabel" required="true" label="{resourceManager.getString('labels', 'addressShipping')}" includeInLayout="false" visible="false" width="100%" labelWidth="90" moveEffect="Move" hideEffect="Fade" showEffect="Fade" toolTip="{resourceManager.getString('labels', 'dazzle.delivery')}">
- <helpers:TextAreaWithSkin id="shippingAddressTextInput" tabIndex="13" maxChars="99" width="100%" height="60" styleName="textInput" toolTip="{resourceManager.getString('labels', 'dazzleDelivery')}" />
- </mx:FormItem>
- <mx:FormItem id="phoneCenterLabel" required="true" label="{resourceManager.getString('labels', 'phone')}" width="100%" labelWidth="90" moveEffect="Move">
- <helpers:TextInputWithSkin id="phoneCenterTextInput" tabIndex="14" maxChars="14" width="100%" styleName="textInput" />
- </mx:FormItem>
- <mx:FormItem label="{resourceManager.getString('labels', 'fax')}" width="100%" labelWidth="90" moveEffect="Move">
- <mx:TextInput id="faxCenterTextInput" tabIndex="15" maxChars="14" width="100%" />
- </mx:FormItem>
- </mx:VBox>
- </mx:Canvas>
- </helpers:WindowShade>
-
- <helpers:WindowShade id="user" label="{resourceManager.getString('labels', 'titleUser')}" width="100%" opened="true" styleName="titlePanelDynamic" click="actionOnZones(event, 'ZoneTwo')">
- <mx:Canvas styleName="containerRedCompact" height="355" width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
-
- <mx:VBox height="340" width="100%" styleName="containerRedContentSync">
-
- <mx:FormItem id="lastNameLabel" required="true" label="{resourceManager.getString('labels', 'lastName')}:" width="100%" labelWidth="80">
- <helpers:TextInputWithSkin id="lastNameTextInput" maxChars="49" tabIndex="16" width="100%" styleName="textInput" />
- </mx:FormItem>
-
- <mx:FormItem id="firstNameLabel" required="true" label="{resourceManager.getString('labels', 'firstName')}" width="100%" labelWidth="80">
- <helpers:TextInputWithSkin id="firstNameTextInput" maxChars="49" tabIndex="17" width="100%" styleName="textInput" />
- </mx:FormItem>
-
- <mx:FormItem id="phoneLabel" required="true" label="{resourceManager.getString('labels', 'phone')}" width="100%" labelWidth="80">
- <helpers:TextInputWithSkin id="phoneTextInput" tabIndex="18" maxChars="14" width="100%" styleName="textInput" />
- </mx:FormItem>
-
- <mx:FormItem label="{resourceManager.getString('labels', 'fax')}" width="100%" labelWidth="80">
- <mx:TextInput id="faxTextInput" tabIndex="19" maxChars="14" width="100%" />
- </mx:FormItem>
-
- <mx:FormItem id="activityLabel" required="true" label="{resourceManager.getString('labels', 'activity')}" width="100%" labelWidth="80">
- <mx:ComboBox id="activityComboBox" tabIndex="20" dataProvider="{_model.specialities}" prompt="{resourceManager.getString('labels', 'chooseActivity')}" selectedIndex="-1" width="100%" change="onChangeActivity(event)" />
- </mx:FormItem>
-
- <mx:FormItem id="otherActivityLabel" required="true" label="{resourceManager.getString('labels', 'activity.other')}" width="100%" labelWidth="80" visible="{_otherActivityActive}" includeInLayout="{_otherActivityActive}" hideEffect="Fade" showEffect="Fade">
- <helpers:TextInputWithSkin id="otherActivityTextInput" tabIndex="21" width="100%" styleName="textInput" />
- </mx:FormItem>
-
- <mx:HBox width="100%" verticalAlign="middle" visible="false" includeInLayout="false">
- <mx:Spacer width="100%" />
- <mx:CheckBox id="buyer" labelPlacement="left" label="{resourceManager.getString('labels', 'buyer')}" styleName="checkBoxForm" width="100%" click="displayShippingAddress(different.selected)" />
- </mx:HBox>
-
- </mx:VBox>
-
- </mx:Canvas>
- </helpers:WindowShade>
-
- <helpers:WindowShade id="scanner" label="{resourceManager.getString('labels', 'titleScanner')}" width="100%" opened="true" styleName="titlePanelDynamic" click="actionOnZones(event, 'ZoneTwo')">
- <mx:Canvas styleName="containerRedCompact" height="355" width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
- <mx:VBox height="340" width="100%" styleName="containerRedContentSync" horizontalScrollPolicy="off" verticalScrollPolicy="off">
- <mx:FormItem label="{resourceManager.getString('labels', 'nameScanner')}" width="100%" labelWidth="130">
- <helpers:TextInputWithSkin id="nameTextInput" tabIndex="23" width="100%" maxChars="99" styleName="textInput" />
- </mx:FormItem>
- <mx:FormItem id="brandLabel" required="true" label="{resourceManager.getString('labels', 'brand')}" width="100%" labelWidth="130">
- <helpers:TextInputWithSkin id="brandTextInput" maxChars="99" tabIndex="24" width="100%" styleName="textInput" />
- </mx:FormItem>
- <mx:FormItem label="{resourceManager.getString('labels', 'type')}" width="100%" labelWidth="130" >
- <mx:TextInput id="typeTextInput" tabIndex="25" maxChars="99" width="100%" />
- </mx:FormItem>
- <mx:FormItem label="{resourceManager.getString('labels', 'age')}" width="100%" labelWidth="130">
- <mx:NumericStepper id="ageNumericStepper" tabIndex="26" width="100" minimum="1980" maximum="{_maxYear}" stepSize="1" />
- </mx:FormItem>
- <mx:FormItem required="false" label="{resourceManager.getString('labels', 'frequency')}" width="100%" labelWidth="130">
- <mx:NumericStepper id="frequencyNumericStepper" tabIndex="27" width="100" minimum="0" maximum="15" stepSize="1" />
- </mx:FormItem>
- <mx:Spacer height="100%" />
- <mx:Text width="100%" selectable="false" text="{resourceManager.getString('labels', 'textScanner')}" />
-
- </mx:VBox>
-
- </mx:Canvas>
- </helpers:WindowShade>
-
- </mx:HBox>
-
- </mx:HBox>
-
- <mx:HBox width="100%" paddingTop="0" visible="false" includeInLayout="false" horizontalScrollPolicy="off" verticalScrollPolicy="off">
- <mx:VBox width="30" height="100%" styleName="containerZone" click="actionOnZones(event, 'ZoneThree')">
- <mx:LinkButton id="partThree" visible="{_partThreeValid}" styleName="statusIcon" />
- </mx:VBox>
-
- <mx:HBox width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
-
- <helpers:WindowShade id="mathContainer" label="{resourceManager.getString('labels', 'titleMath')}" width="100%" opened="true" styleName="titlePanelDynamic" click="actionOnZones(event, 'ZoneThree')">
- <mx:Canvas styleName="containerRedCompact" height="45" width="100%">
-
- <mx:VBox height="25" width="100%" styleName="containerRedContentSync">
-
- <mx:FormItem required="{_model.clinicalStudies}" label="{resourceManager.getString('labels', 'math')}" width="100%" labelWidth="130">
- <mx:TextInput id="math" width="100%" />
- </mx:FormItem>
-
- </mx:VBox>
-
- </mx:Canvas>
- </helpers:WindowShade>
-
- <helpers:WindowShade id="vatContainer" label="{resourceManager.getString('labels', 'titleVAT')}" width="100%" opened="true" styleName="titlePanelDynamic" click="actionOnZones(event, 'ZoneThree')">
- <mx:Canvas styleName="containerRedCompact" height="45" width="100%">
- <mx:VBox height="25" width="100%" styleName="containerRedContentSync">
- <mx:FormItem required="true" label="{resourceManager.getString('labels', 'vat')}" width="100%">
- <mx:CheckBox id="vatCheckBox" />
- </mx:FormItem>
- </mx:VBox>
- </mx:Canvas>
- </helpers:WindowShade>
- </mx:HBox>
-
- </mx:HBox>
- <mx:HBox width="100%" horizontalAlign="left" paddingLeft="105">
- <mx:Text selectable="false" fontWeight="bold" paddingLeft="20" htmlText="{resourceManager.getString('labels', 'betaVersion')}" />
- </mx:HBox>
- <mx:HBox width="100%" horizontalAlign="left" paddingLeft="105">
- <mx:CheckBox id="licenceAgreeCheckBox" labelPlacement="left" label="" />
- <mx:Text selectable="false" htmlText="{resourceManager.getString('labels', 'agree')}" click="onReadLicence(event)" buttonMode="true" useHandCursor="true" />
- </mx:HBox>
-
- <mx:HBox width="100%" horizontalAlign="left" paddingLeft="105">
- <mx:CheckBox id="dataBaseAgreeCheckBox" label="" />
- <mx:Text selectable="false" htmlText="{resourceManager.getString('labels', 'agreeDatabase')}" click="onReadDatabase(event)" buttonMode="true" useHandCursor="true" />
- </mx:HBox>
-
- <mx:HBox width="100%" horizontalAlign="left" paddingLeft="105">
- <mx:CheckBox id="physicianAgreeCheckBox" label="" />
- <mx:Text selectable="false" htmlText="{resourceManager.getString('labels', 'agreePhysician')}" buttonMode="true" useHandCursor="true" />
- </mx:HBox>
- <mx:HBox width="100%" horizontalAlign="center">
- <mx:Button id="registerButton" tabIndex="28" label="{resourceManager.getString('labels', 'registration')}" width="120" click="onRegister(event)" keyDown="onRegister(event)" buttonMode="true" useHandCursor="true"/>
- </mx:HBox>
-
- </mx:VBox>
|