与这篇文章有关,https://apple.stackexchange.com/questions/70585/applescript-opens-new-window-for-everything-when-run。
我想知道我是否可以突出显示选定的文本并运行此服务,我可以在新的推文文本框中拥有选定的文本吗?
这是当前的代码:
activate application "Tweetbot"
tell application "System Events"
tell process "Tweetbot"
repeat until exists
delay 0.4
end repeat
set frontmost to true
delay 0.2
keystroke "n" using command down
end tell
end tell