Photoshop fixes, tips and tricks
Windows Adobe Photoshop Issue:
“Droplet could not communicate with Photoshop” error message.
Solution:
- On the droplet file you created, right click and go to Properties from the menu.
- Select Compatibility tab on the the top menu.
- On the last check box select Run this program as an administrator.
Now you can drag and drop your files onto the droplet file, this will launch Photoshop as administrator. A User Account Control popup will appear asking “Do you want to allow this app from an unknow publisher to make changes to your divice? Select yes to proceed and that’s it.
Adobe Photoshop
Search for the folder \Presets\Scripts
Export Layers to Files without the _ sequence numbers.
Just comment out the 2 fileNameBody and add the layerName
From this:
var fileNameBody = fileNamePrefix;
fileNameBody += “_” + zeroSuppress(i, 4);
fileNameBody += “_” + layerName;
To this:
var fileNameBody = fileNamePrefix;
//fileNameBody += “_” + zeroSuppress(i, 4);
//fileNameBody += “_” + layerName;
fileNameBody += layerName;
Leave a Response