Photoshop Javascript Scripting Speichern und Schließen des Dokuments

Ich habe aus irgendeinem Grund Probleme beim Sparen. Ich verwende Photoshop CS5.1 (wenn das wirklich die Ursache des Problems ist)

error 8800: General Photoshop error occurred. 
This functionality may not be available in this version of Photoshop.
Could not save a copy as C:\...\Temp001.jpeg0011338281522" 
because the file could not be found


var thistimestamp = Math.round(new Date().getTime() / 1000);
saveFile = new File( "/Users/Barny/My Pictures/Temp001" +thistimestamp+ ".jpeg" )
saveOptions = new JPEGSaveOptions();
saveOptions.embedColorProfile = true;
saveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
saveOptions.matte = MatteType.NONE;
saveOptions.quality = 9;
app.activeDocument.saveAs(saveFile, saveOptions, true,Extension.LOWERCASE);

Ich möchte, dass das Skript gespeichert und geschlossen wird, aber ich erhalte diesen Fehler weiterhin. Ich verwende Photoshop CS5.1 (wenn das wirklich die Ursache des Problems ist)

Antworten auf die Frage(1)

Ihre Antwort auf die Frage