我正在尝试修改此脚本以压缩,然后使用TinyPNG Photoshop插件关闭所有打开的文件,而不是必须在打开的对话框中一次选择一个文件。它们确实提供了另一个脚本,允许您压缩整个文件夹。但是,我发现自己需要在一个文件夹中压缩出50张图像,所以我只希望选择那10张图像或打开那10张图像并在所有打开的文件上运行脚本。
我尝试替换
compressFile(File.openDialog("Choose a PNG or JPEG file to compress")
与
compressFile(app.activeDocument)
尝试使脚本仅压缩当前文档。
与其使用活动文档,不如直接跳转到catch(错误)。
try {
// Compress Active File
compressFile(File.openDialog("Choose a PNG or JPEG file to compress"));
} catch(error) {
alert("No JPEG or PNG file selected or compression error.");
}
答案 0 :(得分:2)
compressFile()
需要一个File
对象,而activeDocument
是一个document
对象。
对于打开的文档,您将需要循环浏览这些文档:
for (var i = documents.length - 1; i >= 0; i--) {
activeDocument = documents[i];
compressFile()
}
,在compressFile()
中,您应该删除opener
部分(因为所有文档都已打开),但是您需要将file
替换为实际的文档路径:
// Compress the document
var tinify = new ActionDescriptor();
tinify.putPath(charIDToTypeID("In "), new File(activeDocument.path + "/" + activeDocument.name)); /* Overwrite original! */
tinify.putUnitDouble(charIDToTypeID("Scl "), charIDToTypeID("#Prc"), percentage);
对于文件对话,您只需修改Compress File.jsx
的最后一位:
//dialogue to select multiple files:
var startFolder = Folder.myDocuments,
myFiles = startFolder.openDlg(void(0), void(0), true);
if (myFiles != null) //if the dialogue wasn't cancelled
{
//launch compressFile for every selected file
for (var i = myFiles.length - 1; i >= 0; i--)
{
compressFile(myFiles[i])
}
}