Search found 1 match
- Wed Aug 23, 2017 5:54 pm
- Forum: Help Me
- Topic: Auto Layer Comp Script
- Replies: 4
- Views: 4881
Re: Auto Layer Comp Script
A correction is needed to get this to work properly #target Photoshop function main(){ if(!documents.length) return; var doc = activeDocument; for(var c =0; c<doc.layers.length;c++){ doc.activeLayer= doc.layers[c]; if(doc.activeLayer.isBackgroundLayer) continue; //added this line doc.activeLayer.vis...