Skip to content

Instantly share code, notes, and snippets.

@PierBover
Created November 13, 2020 22:03
Show Gist options
  • Save PierBover/8fa1574db7c641008cfbe5e1e5f1764d to your computer and use it in GitHub Desktop.
Save PierBover/8fa1574db7c641008cfbe5e1e5f1764d to your computer and use it in GitHub Desktop.
Rename groups photoshop script
var groups = app.activeDocument.layerSets;
var first = parseInt(groups[0].name);
for (var i = 1; i < groups.length; i++) {
groups[i].name = first + i;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment