我是 Adobe 软件脚本的新手。
我想写一个脚本,它告诉我,我可以在哪里连字。我想知道,是否有任何方法可以从内置拼写检查器中获取这些信息。它还应该考虑当前的语言。
到目前为止,这是我想出的:
// Get the current selection
var mySelection = app.selection;
// Check, if it is a word
if (mySelection instanceof Word) {
// Get the possible hypenation options
var hyphenated =
// Add all hyphenation options to the text string
mySelection[0].contents = hyphenated;
}
我知道这并不多,但我找不到任何手动访问拼写检查器的方法。