Created
November 13, 2020 22:03
-
-
Save PierBover/8fa1574db7c641008cfbe5e1e5f1764d to your computer and use it in GitHub Desktop.
Rename groups photoshop script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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