Apologies if this has been covered before but I couldn’t find any posts discussing it.
How can I quickly and easily copy an item (NOT an item link) to clipboard so that I can paste it anywhere (email, WhatsApp chat, etc)? I tried a few basic Applescripts but none seem to work.
tell application id "DNtp"
set thisRecord to item 1 of (selection as list)
set filePath to path of thisRecord
set theFile to POSIX file filePath as alias
tell application "Finder"
set the clipboard to {theFile}
end tell
end tell
I use standard macOS features … select the item, cmd-C to copy to clipboard, move to other app that accepts clipboard stuff, cmd-V. Or perhaps quicker (or not, based on personal preference), “drag and drop”.