I have a problem with a photoshop script in the switch photoshop configurator.
I've included a script in the save method to save the image in the same file format as it comes in.
There is no other script or action selected.
When the script is executed the log says "Job processing successfully completed!" but the image will not go forward into the next folder.
Can somebody please help me with that?
Many Thanks!
Michael
----
Here's the script
Code: Select all
try {
$outfile = $outfolder + '/' + $filename + "." + $extension;
$doc.save();
$outfiles.push($outfile);
}
catch(theError) {
$doc.close(SaveOptions.DONOTSAVECHANGES);
$error = theError.description;
}