Carmen,  All you need to do is run the values return for those dates through this function:            private function msToDate(ms:Number, dateFormat:String, useUTC:Boolean):String             {                 var date:Date = new Date(ms);                 if (date.milliseconds == 999) // workaround for REST bug                     date.milliseconds++;                 if (useUTC)                     date.minutes += date.timezoneOffset;                                  if (dateFormat){                     dateFormatter.formatString = dateFormat;                     var result:String = dateFormatter.format(date);                     if (result)                         return result;                     else                         return dateFormatter.error;                 }else{                     return date.toLocaleString();                 }             } 
You will also need this declaration:<fx:Declarations><mx:DateFormatter id="iDateFormat" /></fx:Declarations>
 
Don't forget to click the Mark as answer check and to click the top arrow (promote) as shown below: