获取一段文本的几何边界

时间:2010-10-05 12:33:40

标签: javascript adobe-indesign extendscript

我有一个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 ......

1 个答案:

答案 0 :(得分:0)