Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Weird layer-renaming issue.

Valorous Hero ,
Dec 01, 2017 Dec 01, 2017

On Win7, PS 19.0 I am encountering a strange issue with renaming layers.

It boils down to these steps:

  1. start a fresh PS
  2. Rename a layer manually works just fine.
  3. Run a layer-making script
  4. Now, renaming layers manually is nearly impossible: you double-click the desired layer to enable editable layer name text, but only have 1 second to type in the entire input before it automatically sets.

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?

TOPICS
Actions and scripting
4.7K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Enthusiast ,
Aug 04, 2018 Aug 04, 2018

In my PC this issue is caused by ESTK linked to PS. If you unlink this connection then it is ok.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Aug 04, 2018 Aug 04, 2018

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?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Aug 04, 2018 Aug 04, 2018

I have it same but I usually click the icon with the link and then it is fine without a problem.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Aug 19, 2018 Aug 19, 2018
LATEST

I checked it. Yes it works. Better to do this 'trick' than relaunching ESTK.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines