从代码打开文档时,如何防止出现“更新链接”对话框?

时间:2013-06-06 13:38:54

标签: adobe-indesign extendscript

我正在尝试使用ExtendScript更新inDesign文档的链接,但每当我打开文档时,会出现一个对话框,询问我是否要更新链接。

我想在后台执行此操作,有没有办法阻止此对话框或任何对话框显示?

由于

2 个答案:

答案 0 :(得分:7)

我找到了这个特定对话框的解决方案。可以从UI禁用此提示,但是,与应用程序的其他设置一样,您也可以在代码中执行此操作。

所以这就是我实施的内容。

//Save the current application setting.
var currentAppSettings = {checkLinksAtOpen: app.linkingPreferences.checkLinksAtOpen};

//Set the value to false to prevent the dialog from showing.
app.linkingPreferences.checkLinksAtOpen = false;

//do some stuff ...

//Set the value back to its original value.
app.linkingPreferences.checkLinksAtOpen = currentAppSettings.checkLinksAtOpen;

答案 1 :(得分:4)

InDesign中有一个用于检查链接的设置。如果您修改了InDesign中的默认设置,该怎么办?也许如果您取消选中“在打开文档之前检查链接”,它将绕过对话。

enter image description here