Adobe Acrobat 插件
我正在构建 Adobe Addin/插件(.api 文件)并面临两个问题 1)我有一个 cusotm 工具,可以用图像注释 pdf。 我希望当您将鼠标悬停在该图像上时,该图像会显示带有该注释作者的工具提示。 这是 doabe 吗
2) 我正在设置书签。 当您查看书签窗格中的书签时,如何控制书签标题的字体和颜色,
非常感谢任何帮助 谢谢
I am building an Adobe Addin/plugin (.api file ) and am faced with two problems
1) I have a cusotm tool that annotates the pdf with images. I want the image to show a tooltip with the author of that anotation when you hover on that image. Is this doabe
2) I am setting bookmarks. When you look at the bookmarks in the bookmark pane how do you control the font and colour of the bookmark caption
any help greatly appreciated
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 查看
AVDocSetSelection()
函数和 Acrobat SDK 中的 SelectionServer 示例插件2)
/C
XX 中的键控制大纲(书签)项目的颜色。 它是一个由三个数字组成的数组 [范围 0.0 - 1.0],表示用于大纲条目文本的 DeviceRGB 颜色。 默认值:[ 0.0 0.0 0.0 ]/F
键控制项目是粗体还是纯色。您无法控制字体。
1) Take a look at function
AVDocSetSelection()
and the SelectionServer sample plugin in Acrobat SDK2) The
/C
key in the XX controls the color of an Outline (bookmark) item. It's an array of three numbers [range 0.0 - 1.0] representing DeviceRGB color to be used for the outline entry’s text. Default value: [ 0.0 0.0 0.0 ]The
/F
key controls whether the item is bold or plain styled.You can not control the font.