我有一个InDesign文档,其中包含文本框架内的超链接。
我需要一种方法来确定超链接中包含的文本的几何边界。不幸的是,我似乎无法在ExtendScript中找到一种方法。
// Export the hyperlinks in the document
for (k = 0; k < myDocument.hyperlinks.length; k++) {
// Get the hyperlink
var myHyperlink = myDocument.hyperlinks[k];
// Check that the source is a text item
if (myHyperlink.source instanceof HyperlinkTextSource) {
// Here, I need to get the geometric bounds of the text contained in the link
}
}
关于如何做到这一点的任何想法?
我正在使用Adobe InDesign CS5 ......
答案 0 :(得分:0)