This content has been marked as final.
Show 2 replies
-
1. Re: Script Help please. Need to save as different filetype.
Paul Riggott Mar 18, 2010 7:22 AM (in response to StuartLevesque)Here you are...
var doc = app.activeDocument; var Path = doc.path; var Name = doc.name.replace(/\.[^\.]+$/, ''); var Suffix = "_full_l"; var saveFile = File(Path + "/" + "full_l" + ".png"); SavePNG(saveFile); function SavePNG(saveFile){ pngSaveOptions = new PNGSaveOptions(); pngSaveOptions.embedColorProfile = true; pngSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE; pngSaveOptions.matte = MatteType.NONE; pngSaveOptions.quality = 1; pngSaveOptions.PNG8 = false; pngSaveOptions.transparency = true; activeDocument.saveAs(saveFile, pngSaveOptions, true, Extension.LOWERCASE); } -
2. Re: Script Help please. Need to save as different filetype.
StuartLevesque Mar 18, 2010 7:25 AM (in response to Paul Riggott)Thank you so much.

