Export list - location

Does anyone know how or have a script to export the ‘location’ field for a list of docs? I see the script the exports a doc name list; I need something similar that creates an exported list of the ‘locations’

thanks
ken

Just create a copy of the script Create Listing_.scpt, then open the copy in Apple’s Script Editor and replace…


set this_name to (name of this_record as string)

…with…


set this_name to (location of this_record as string) & (name of this_record as string)

1 Like

works like a charm-
thanks Christian