Skip to content

Instantly share code, notes, and snippets.

@joonaspaakko
Last active February 17, 2018 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joonaspaakko/e8b5d577953e25c0a86903a76a7f4bba to your computer and use it in GitHub Desktop.
Save joonaspaakko/e8b5d577953e25c0a86903a76a7f4bba to your computer and use it in GitHub Desktop.
Selects the parent group of the currently selected layer.
// https://gist.github.com/joonaspaakko/e8b5d577953e25c0a86903a76a7f4bba
#target photoshop
var doc = app.activeDocument;
var layerParent = doc.activeLayer.parent;
if ( layerParent !== doc ) doc.activeLayer = layerParent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment