この投稿に関連して、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