Javascript 自动将附加工具添加到 Acrobat 中的工具栏

Javascript automation to add add-on tool to the toolbar in Acrobat

大家好,

我是开发 Acrobat 功能的完全初学者,我的任务是向工具栏添加一个按钮,按下该按钮会显示一个弹出窗口,使用 Javascript。我能够将按钮添加到附加工具栏,然后我手动将按钮从附加工具添加到工具栏。有人问我这个手动添加是否可以自动化,我浏览了 Javascript API 参考资料,发现它提供了 execMenuItem 方法,但它只能执行一些命令,例如另存为。是否可以编写一个脚本来自动执行手动添加?我说的手动添加是去查看 -> Show/Hide -> 工具栏项目 -> 自定义快速工具

我知道我们可以直接使用插件向工具栏添加按钮,但这需要使用 C++ 进行开发,我们的团队正在尝试探索可以使用 JS 脚本实现的功能

谢谢

您可以使用 JavaScript for Acrobat API Reference 第 100 页的 addToolButton() 来实现类似的功能。

然而,根据一位 AcrobatUsers post:

的说法,似乎不支持通过 JavaScript API 添加到快速工具

Note that as of version X you cannot place a button on the toolbar automatically, no matter what code you write - it will ALWAYS appear on the Tools Pane, down at the bottom corner - from where the user has to manually drag it into the Quick Tools area.