| 1234567891011121314151617181920212223 |
- import mx.managers.PopUpManager;
- [Bindable]
- private var _termsText:String = "";
- private function creationCompleteHandler() : void
- {
- /**
- * Conditions différentes en fonction du profil à modifier lorsque le profil sera géré
- */
- //licence.text = resourceManager.getString('xxx', 'LICENCE');
- //licence.text= resourceManager.getString('xxx', 'LICENCEPHYSICIAN');
- }
- public function setTermsAndConditions(terms : String) : void
- {
- _termsText = terms;
- }
- private function closeHandler():void
- {
- PopUpManager.removePopUp( this );
- }
|