Emilio, Untested...Find this code in the SearchWidget.mxml, createSearchResults function: if (fieldName.toUpperCase() == queryLinkField.toUpperCase())
{
//concatenate
link = queryLinkPre + value + queryLinkSuffix;
}
Replace with:
if (fieldName.toUpperCase() == queryLinkField.toUpperCase())
{
if(fieldName.toUpperCase() == "PARCELID"){
var url:String = "http://maps.assessor.lacounty.gov/mapping/viewAssessorMapPDF.asp?val=";
var AINlink:String = value;
var dashes:RegExp = /-/g;
AINlink = AINlink.replace(dashes, "");
var spaces:RegExp = / /g;
AINlink = AINlink.replace(spaces, "");
AINlink = AINlink.substr(0,4) + "-" + AINlink.substr(4,3);
url = url + AINlink;
link - url;
}else{
//concatenate
link = queryLinkPre + value + queryLinkSuffix;
}
}