回答:
これを行うために、次の内容のRun AppleScriptオブジェクトを使用してオートマトンワークフローを作成しました。
on run {input, parameters}
tell application "Google Chrome" to activate
tell application "System Events"
keystroke "A"
keystroke "B"
keystroke "C"
end tell
return input
end run
これは私にとってはうまくいきました
独自のスクリプトを作成するだけでなく、Keyboard Maestroを使用して、このようなキーシーケンスを作成できます。
Keyboard Maestro、iKey、QuicKeysなどのアプリケーションでマクロを作成できます。それらの多くは、Keyboard Maestroのクイックマクロのようなものもサポートしています。⌃F1を押してマクロの記録を開始または停止し、⌥F1でマクロを再生できます。
AppleScriptでキー入力をエミュレートすることもできます。FastScriptsでスクリプトを実行する場合、開始時の遅延は必要ありません。
delay 0.5 -- if the script is run with a shortcut that has modifier keys
activate application "TextEdit"
tell application "System Events"
keystroke "aa"
key code 123 using {shift down, command down}
end tell
このkeystroke
コマンドは、現在のキーボードレイアウトに含まれている文字を挿入するためにのみ使用できます。テキストが十分に長い場合、挿入時に目に見える遅延も発生します。
テキストを挿入するもう1つの方法は、クリップボードを使用することです。
set the clipboard to "aa"
delay 0.05
tell application "System Events" to keystroke "v" using command down