Created
June 23, 2014 12:10
-
-
Save yamoo9/f2a2eae1e719b83f3543 to your computer and use it in GitHub Desktop.
포토샵 첫번째 레이어(그룹) 토글 스크립트
This file contains 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
/*! 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