dictionaryEntries is an array of values. Here's some sample code I used in testing:
var salesRep = $().SPFindPeoplePicker({ peoplePickerDisplayName: "Sales Rep", // The displayName of the People Picker on the form valueToSet: "DOMAIN\\bobsmith" });for(i=0; i < salesRep.dictionaryEntries.length; i++) { alert(salesRep.dictionaryEntries[i].Email); }
M.