답변:
이를 위해이 컨텐츠로 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 와 같은 응용 프로그램으로 매크로를 만들 수 있습니다 . 키보드 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
명령은 현재 키보드 레이아웃에 포함 된 문자를 삽입하는 데만 사용할 수 있습니다. 텍스트가 충분히 길면 삽입시 눈에 띄는 지연이 있습니다.
텍스트를 삽입하는 또 다른 방법은 클립 보드를 사용하는 것입니다.
set the clipboard to "aa"
delay 0.05
tell application "System Events" to keystroke "v" using command down