我的脚本部分工作。 它将所有打开的psd作为jpg保存到一个单独的目录中,并关闭一些打开的文件,而不是全部。 该目录有五个文件。该脚本只保存三个文件, 我做错了什么?
#target photoshop
if (app.documents.length > 0) {
//flatten the active document
app.activeDocument.flatten();
//jpeg options
var myJPEGOptions = new JPEGSaveOptions();
myJPEGOptions.embedColorProfile = true;
myJPEGOptions.formatOptions = FormatOptions.STANDARDBASELINE;
myJPEGOptions.matte = MatteType.WHITE;
myJPEGOptions.quality = 12;
myJPEGOptions.scans = 3;
// get documents;
var docs = app.documents;
for (var m = 0; m < app.documents.length; m++) {
app.activeDocument = docs[m];
try {
//save file to folder
var myFile = new File(("~/Desktop/forum-test") + "/" + activeDocument.name);
app.activeDocument.saveAs(myFile, myJPEGOptions, true);
//close the document
activeDocument.close(SaveOptions.DONOTSAVECHANGES);
}
catch (e) {
alert ("Error the script did not execute");
}
}
}
答案 0 :(得分:1)
app.documents
集合是动态的,因此当您关闭文档时,此集合会相应更改。
因为您要在for循环中关闭文档,并将增量索引与app.documents.length
进行比较,所以您不处理所有文件(每次处理循环时app.documents.length
减少一个)。 / p>
尝试使用while循环:
while (app.documents.length){
// Save and close the active document here.
}
答案 1 :(得分:0)
我认为这两行是错误的:
//save file to folder
var myFile = new File(("~/Desktop/forum-test") + "/" + activeDocument.name);
和
//close the document
activeDocument.close(SaveOptions.DONOTSAVECHANGES);
您不应该使用app.activeDocument
代替activeDocument
吗?无论如何,activeDocument
是什么?