Zapisywanie i zamykanie skryptów JavaScript w Photoshopie

Mam problem z zapisaniem z jakiegoś powodu; Używam Photoshop CS5.1 (jeśli to naprawdę jest przyczyną problemu)

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);

Chciałbym, aby skrypt zapisywał i zamykał, ale ciągle otrzymuję ten błąd. Używam Photoshop CS5.1 (jeśli to naprawdę jest przyczyną problemu)

questionAnswers(1)

yourAnswerToTheQuestion