Copy link to clipboard
Copied
On Win7, PS 19.0 I am encountering a strange issue with renaming layers.
It boils down to these steps:
What's worse, after this the layer issue persists even in new documents, all the way until app restart.
This is my layer-making script:
#target photoshop
function test(){
var doc = app.activeDocument;
var arr = [
"Name 1",
"Name 2"
];
var newLayer;
for(var i = 0; i < arr.length; i++){
newLayer = doc.artLayers.add();
newLayer.name = arr;
};
};
test();
Has anyone come across this?
Copy link to clipboard
Copied
In my PC this issue is caused by ESTK linked to PS. If you unlink this connection then it is ok.
Copy link to clipboard
Copied
In my case it's of course caused by ESTK after I choose / target Photoshop from its dropdown list. But it's not enough to choose ESTK as target from that list back. Ps still acts the same way untill I relaunch ESTK. Do not you have the same?
Copy link to clipboard
Copied
I have it same but I usually click the icon with the link and then it is fine without a problem.
Copy link to clipboard
Copied
I checked it. Yes it works. Better to do this 'trick' than relaunching ESTK.