Apr 05, '07 07:30:00AM • Contributed by: swaldoca
This short applescript just trades the first and last names for the selected entries.
tell application "Address Book"
set mySelected to selection
repeat with myPerp in mySelected
set tmp to last name of myPerp
set last name in myPerp to (first name in myPerp)
set first name in myPerp to tmp
end repeat
end tell
I saved this in my Library » Scripts » Address Book Scripts. Ideally, I'd bind a hot key to it run it every time I come across a swapped name, but for now I just run it from the menu.
