Copy Path
I have a script that used to copy the full path of a selected file. The script no longer works.
Adobe Bridge v 13.0.2.636
Script:
#target bridge
if( BridgeTalk.appName == "bridge" ) {
bridgePath = new MenuElement("command", "Path to Clipboard", "at the end of Thumbnail");
}
bridgePath.onSelect = function () {
pathToClipboard();
}
function pathToClipboard(){
var sels = app.document.selections;
app.system("echo "+decodeURI(sels[0].spec.fsName) +"|clip");
}
Script location:
C:\Users\{me}\AppData\Roaming\Adobe\Bridge 2023\Startup Scripts
Thanks!
