Hello,
I have a psd file (000_000_RAS_880.psd) opend in CS5. I'm trying to save it to a different file name using the code below, but I get a "General Photoshop Error' message. Any insight is greatly appreciated.
Thanks,
Raphael
--------------------------------------------------------------
var saveFile = new File("903_101_RAS_880.psd");
var psdSaveOptions = new PhotoshopSaveOptions();
psdSaveOptions.layers = true;
app.activeDocument.saveAs (saveFile, psdSaveOptions);
------------------------------------------------------------