Now Reading
Photoshop fixes, tips and tricks
0

Photoshop fixes, tips and tricks

by Design SyncNovember 27, 2016

Windows Adobe Photoshop Issue:

“Droplet could not communicate with Photoshop” error message.

Solution:

  1. On the droplet file you created, right click and go to Properties from the menu.
  2. Select Compatibility tab on the the top menu.
  3. 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