Question
Load selected file(s) to placeGun
Hi,
in my workflow would by nice to load selected file to placeGun without open dialog window. Same as drag and drop but without drag and drop 🙂
So i know i can get filepath to clipboard with CTRL+C (windows 10)
mySelectedFile = //but i dont know how to tel JS: use filepath wich is in my clipboard. (because i cant use specific filepath - somethimes i need this for 200 files, one by one, (snippets))
app.activeDocument.placeGuns.loadPlaceGun(mySelectedFile);
I know JS have som restriction with Clipboard, so, it is possible do this via JS ?
Thank you