Zhujing, OK the issue was that the identify task returns a string date and therefor my code to adjust based on useutc was being skipped.Here is the changes you need to make. Find the onResult function and then this block of code:Old Code: if (isDateField && (value != "Null" || value != "")){
var dateMS:Number = Number(value);
if (!isNaN(dateMS))
value = msToDate(dateMS, dateFormat, useUTC);
}
And replace it with thisNew Code: if (isDateField && (value != "Null" || value != "")){
if (isNaN(Number(value)) == true){
var pDate:Date = new Date(value);
value = msToDate(pDate.getTime(), dateFormat, useUTC);
}else{
value = msToDate(Number(value), dateFormat, useUTC);
}
}