applicationTermsPopUp.as 559 B

1234567891011121314151617181920212223
  1. import mx.managers.PopUpManager;
  2. [Bindable]
  3. private var _termsText:String = "";
  4. private function creationCompleteHandler() : void
  5. {
  6. /**
  7. * Conditions différentes en fonction du profil à modifier lorsque le profil sera géré
  8. */
  9. //licence.text = resourceManager.getString('xxx', 'LICENCE');
  10. //licence.text= resourceManager.getString('xxx', 'LICENCEPHYSICIAN');
  11. }
  12. public function setTermsAndConditions(terms : String) : void
  13. {
  14. _termsText = terms;
  15. }
  16. private function closeHandler():void
  17. {
  18. PopUpManager.removePopUp( this );
  19. }