使用AppleScript从任何最顶层应用程序的焦点文本字段中读取文本

时间:2014-07-18 13:10:33

标签: applescript

我希望AppleScript能够对最顶层应用程序当前焦点文本字段中输入的文本进行操作。

使用

tell application "System Events"
    set topProcess to first process whose frontmost is true
end tell

我可以获得最顶级的流程。我怎样才能获得其专注的文本字段?

1 个答案:

答案 0 :(得分:1)

这实际上取决于您运行的应用程序。如果文本总是在应用程序中突出显示,那么您可以执行以下操作:

tell application "System Events" to tell process "Name of App" to keystroke "c" using {command down}

这通常适用于您正在使用的应用程序是"活动" ...