Skip to content

Instantly share code, notes, and snippets.

@yamoo9
Created June 23, 2014 12:10
Show Gist options
  • Save yamoo9/f2a2eae1e719b83f3543 to your computer and use it in GitHub Desktop.
Save yamoo9/f2a2eae1e719b83f3543 to your computer and use it in GitHub Desktop.
포토샵 첫번째 레이어(그룹) 토글 스크립트
/*! toggleFirstLayersVisible.jsx(첫번째 레이어 보임/숨김 토글 스크립트), 2013 @ yamoo9.net */
(function(docuemnt){
var firstLayers = docuemnt.layers[0];
firstLayers.visible = !firstLayers.visible;
})(activeDocument);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment