gpt4 book ai didi

javascript - 是否可以在 Extendscript 中抑制 CheckOut/CheckIn 对话框?

转载 作者:行者123 更新时间:2023-12-02 13:54:36 24 4
gpt4 key购买 nike

我有一个脚本,其函数可以检查文档的第一个故事。当我运行此命令时,会弹出一个对话框,询问我是否要将文本更新到最新版本。由于该函数每次运行脚本都会运行多次,因此我想通过每次回复 yes 来抑制此对话框。有没有办法在这些对话框出现时自动对它们说"is",或者只是通过自动响应来抑制它们?

function doccheckout(doc) {
// get the main story
var stories = doc.stories
var story = stories.firstItem()
// check out the main story
story.checkOut()
}

当我用 document.checkIn() 关闭文档时,也会发生同样的事情,所以我也想禁止那个,但我假设第一部分的任何解决方案都是适用于第二个。

相关弹出窗口

enter image description here

最佳答案

尝试禁用用户交互:

app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
// your code here
//
// at the end of your script reset it to the default
app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;

关于javascript - 是否可以在 Extendscript 中抑制 CheckOut/CheckIn 对话框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40790738/

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