Skip navigation
Currently Being Moderated

Verifying a feature request

Mar 5, 2012 9:44 AM

I was about to make a feature request in the dedicated forum but decided first to post here to make sure this is currently not possible.

 

 

Rename multiple layers.

 

Currently selecting multiple layers in the layer's panel and choosing "Options for Selection" allows changing all other options but not the name. Please enable name changing too which should come with automatic sequence number added at the end of the names.

 
Replies
  • Currently Being Moderated
    Mar 5, 2012 9:50 AM   in reply to GSIDesign

    Hi GSIDesign

     

    No it´s not possible to rename multiple Layers at the same time.

     

    Perhaps what you need is just an script

     

    Best Regards

    Gustavo.

     
    |
    Mark as:
  • Currently Being Moderated
    Mar 5, 2012 1:33 PM   in reply to GSIDesign

    This is a user to user forum. Adobe rarely checks in on us here. I'm not sure what feature request forum you're looking at but as far as I know, the best way to communicate a feature request is via the webform located here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

     
    |
    Mark as:
  • Currently Being Moderated
    Mar 5, 2012 2:16 PM   in reply to GSIDesign

    while we wait for the feature....

     

    select something in each layer you need renamed before running the script.

    var idoc = app.activeDocument;
    var layerName = Window.prompt ("Enter Base Layer Name", "Layer-", "Rename Selected Layers");
    var postFixNum = Window.prompt ("Enter Starting sequence number", 1, "Rename Selected Layers");
     
    for (i=0; i<idoc.layers.length; i++) {
        var ilayer = idoc.layers[i];
        if (ilayer.hasSelectedArtwork) {
            ilayer.name = layerName+postFixNum;
            postFixNum ++;
        }
    }
    
     
    |
    Mark as:
  • Currently Being Moderated
    Mar 5, 2012 4:46 PM   in reply to CarlosCanto

    Devil's advocate: If all the layers have identical names, what's the value added?

     
    |
    Mark as:
  • Currently Being Moderated
    Mar 5, 2012 5:52 PM   in reply to [scott w]

    they're not exactly the same, we added a suffix to each of them

     
    |
    Mark as:
  • Currently Being Moderated
    Mar 5, 2012 6:35 PM   in reply to CarlosCanto

    Sorry Carlos, I was referring to the feature request. I haven't tried your script yet

     
    |
    Mark as:
  • Currently Being Moderated
    Mar 5, 2012 7:04 PM   in reply to [scott w]

    no problemo

     
    |
    Mark as:
  • Currently Being Moderated
    Mar 6, 2012 7:24 AM   in reply to GSIDesign

    Fair Enough. I was merely curious. Thanks.

     
    |
    Mark as:
  • Currently Being Moderated
    Mar 6, 2012 7:51 AM   in reply to [scott w]

    you're welcome GSI

     

    Scott thanks for being curious, your participation is always valuable.

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points