Skip to content

Instantly share code, notes, and snippets.

@joonaspaakko
Last active January 2, 2025 23:00
Show Gist options
  • Select an option

  • Save joonaspaakko/e8b5d577953e25c0a86903a76a7f4bba to your computer and use it in GitHub Desktop.

Select an option

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