Applescript, how to get network address of a file
- by CRP
We are a network of Mac computers. I would like to send email addresses to colleagues with links to files on network locations. I made the following applescript:
tell application "Finder"
set uuu to URL of the first item of (get the selection)
set the clipboard to uuu
end tell
which puts the URL of the currently selected file into the…