I wonder if you have tried:-
File - Scripts - Export Layers to Files...
Join us now to get access to all our features. Once registered and logged in, you will be able to view and download attachments, create topics, post replies to existing threads, get your own private messenger and more.
I have a layer list of about 15 layers. I currently have to right-click, duplicate new, and type the name to duplicate each layer out to their own document. I have an action to automatically save the duplicated file to a specific folder and close it, but I'd like to roll it all into one or two steps.
For example:
Click and action that runs through the layer list, duplicating the first layer out, saving/closing it, then back to the 2nd layer, save/close, 3rd layer save/close, etc.
or
simply runs through the list duplicating out each layer to their own files, and then i can hit each one manually with the save/close action i already have.
Any thoughts on how to accomplish this?
Thanks!
I wonder if you have tried:-
File - Scripts - Export Layers to Files...
How can I remove the "_0001" "_0002" etc that is placed in front of the output files?
You could comment out line 793
fileNameBody += "_" + zeroSuppress(i, 4);
just put // in front.
Also, I need each layer to be converted to Bitmap (Image>Mode>Bitmap)before being saved off. I wonder if there's any way to implement this along with the Export Layers to Files script?
Last edited by darthsmozers; 11-19-2009 at 09:10 AM.
Add these two lines after line 791Before Line 792Code:duppedDocumentTmp.changeMode(ChangeMode.GRAYSCALE); duppedDocumentTmp.changeMode(ChangeMode.BITMAP,new BitmapConversionOptions);
You might only be able to save as a psd though?Code:var fileNameBody = fileNamePrefix;
Sorry I even confused myself the new two lines of code should be placed just before..
var fileNameBody = fileNamePrefix; (Line 792)