Skip to content

Instantly share code, notes, and snippets.

@marko-galesic
Created September 3, 2019 00:27
Show Gist options
  • Save marko-galesic/dc7d9d37db8b08250203cb2f19986d63 to your computer and use it in GitHub Desktop.
Save marko-galesic/dc7d9d37db8b08250203cb2f19986d63 to your computer and use it in GitHub Desktop.
Show Only One Group in Photoshop
var doc = app.activeDocument
for (var l = 0; l < doc.layerSets.length; l++) {
if ( doc.layerSets[l].name == "yourGroupName" ) {
doc.layerSets[l].visible = true;
} else {
doc.layerSets[l].visible = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment