为此,我需要一种方法来访问最前面窗口的所有文本内容.我已经接近使用applescript但我无法找到获取实际文本的方法.我怀疑swift可能能够提供帮助,但我很遗憾甚至谷歌这个,因为我的大多数搜索最终只能找到一些简单的方法,比如从Chrome中的标签中获取网址等.
这是我想要的要点:
tell the frontmost application get contents of frontmost window as textend tell解决方法 您是否尝试获取特定应用程序的所有UI元素?
set app@R_502_6889@ to "System Preferences" -------------------------- Set this to the App you want to look atdisplay dialog "Set the app you want to look at" default answer "System Preferences" buttons {"OK"} default button 1set app@R_502_6889@ to text returned of resultset winstuff to "defaultval"set menustuff to "defaultval"tell application app@R_502_6889@ activateend telldelay 0.5tell application "System Events" tell process app@R_502_6889@ set winstuff to entire contents of front window set menustuff to entire contents of menu bar 1 end tellend tell--return winstuff & "\r\r\r\r" & menustuff -- comment this out to get just winstuffreturn winstuff -- comment this out too to get just menustuff--return menustuff总结
以上是内存溢出为你收集整理的swift – 我怎么能尽可能地从OSX上最前面的窗口/文档中获取所有文本?全部内容,希望文章能够帮你解决swift – 我怎么能尽可能地从OSX上最前面的窗口/文档中获取所有文本?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)