Skip to content

Instantly share code, notes, and snippets.

@partynight12th
Created July 9, 2012 03:43
Show Gist options
  • Save partynight12th/3074112 to your computer and use it in GitHub Desktop.
Save partynight12th/3074112 to your computer and use it in GitHub Desktop.
Layer Scan at Photoshop
var doc = app.activeDocument;
var layers = doc.layers;
var lnum = layers.length;
for(var i = 0; i < lnum; i++){
layers[i].visible = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment