gpt4 book ai didi

error-handling - InDesign CS5脚本: opening a document is unresponsive, and isn't throwing an error?

转载 作者:行者123 更新时间:2023-12-03 08:35:15 25 4
gpt4 key购买 nike

我正在使用myFile.execute()方法以编程方式打开InDesign文档(在这种情况下,这是一个已应用样式的空白文档)。

有时会打开该文档,有时它是而不是 ...似乎脚本没有足够的时间在完成操作之前打开文件。

这是我发生的原因,因为在使用alert(template.name)进行测试时,它确实显示了我要查找的文件名,并且脚本在应用File(template).execute()时确实不会引发错误(变量template本身已经是File对象,而不仅仅是template.execute()编码工作)。

以下是相关代码:

function openStylesTemplate()
{
var templateFolder = getScriptFolder(); // with the function below
var fileArray = templateFolder.getFiles("*.indd"); // an array of all InDesign documents in this script's same folder

try
{
var template = fileArray[0]; // the ONLY InDesign document in the folder
File(template).execute(); // open the InDesign template document
}
catch(e)
{
alert("Error: " + e.message + "\n\n" +
"Make sure the InDesign styles document is in the same folder as this script,\n" +
"and that it is the ONLY InDesign document in this folder, and try again.\n\n" +
"This script is in this folder: " + templateFolder + ".");

exit();
}
} // end of function openStylesTemplate

那么,脚本可能没有足够的时间来加载文档吗?如果是这样,我应该在调用此函数之前创建一个计时器吗?还是有更好的方法以编程方式打开InDesign文档?

最佳答案

打开indesign文档与File.execute()无关,后者只是从os的 Angular 打开文件,而没有引用文件本身。您可以通过调用app.open ( file );打开文件。

关于error-handling - InDesign CS5脚本: opening a document is unresponsive, and isn't throwing an error?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11564893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com