Too long error and too short error messages for StringValidator
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:StringValidator id="nameV" source="{nameTxt}" property="text" required="true" maxLength="10" minLength="2" tooLongError="This field contains 10 chars" tooShortError="You have to insert 2 chars at least" /> <mx:Form id="myForm"> <mx:FormItem label="Insert Name" required="true"> <mx:TextInput id="nameTxt" /> </mx:FormItem> </mx:Form> </mx:Application>