This content has been marked as final.
Show 2 replies
-
1. Re: PNGSaveOptions NOT working
Paul Riggott Aug 18, 2010 6:48 AM (in response to Peter Celuch)Try this....
var saveFile = File(Folder.desktop +"/test.png"); sfwPNG24(saveFile); function sfwPNG24(saveFile){ var pngOpts = new ExportOptionsSaveForWeb; pngOpts.format = SaveDocumentType.PNG pngOpts.PNG8 = true; pngOpts.transparency = false; pngOpts.interlaced = false; pngOpts.quality = 100; activeDocument.exportDocument(saveFile,ExportType.SAVEFORWEB,pngOpts); } -
2. Re: PNGSaveOptions NOT working
Peter Celuch Aug 18, 2010 10:10 AM (in response to Paul Riggott)Thank you soo much!

