作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用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文档与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/
我是一名优秀的程序员,十分优秀!