AutoHotKey(오토핫키) 설명서 ControlSend

Posted by 발전소장
2014. 8. 13. 20:46 AutoHotKey/Commands

ControlSend

키 입력을 지정의 윈도우나 컨트롤에 송신

ControlSend [,Control, Keys, WinTitle, WinText, ExcludeTitle, ExcludeText]
ControlSendRaw [,Control, Keys, WinTitle, WinText, ExcludeTitle, ExcludeText]

Parameters

인수명설명
Control 컨트롤을 지정.
윈도우 지정의 방법참조.
생략시는, 맨 위의 컨트롤이나 윈도우 자신.
Keys 송신하는 키 입력.
자세한 것은Send참조.
WinTitle 윈도우 타이틀 등.
윈도우 지정의 방법참조.
WinText 윈도우에 포함되는 텍스트
ExcludeTitle 제외 타이틀
ExcludeText 제외 텍스트

ErrorLevel

성공시는 「0」, 실패시는 「1」.

Remarks

ControlSendRaw그럼, 「{Enter}」(이)나 「^c」(와)과 같은 특수 키를 해석하지 않고,Keys(으)로 지정한 텍스트를 직접 박는다.

1키 입력 마다,SetKeyDelay그리고 지정한 간격을 열어 입력된다.

Related

SetKeyDelay, Control, ControlGet, ControlGetText, ControlMove, ControlGetPos, ControlClick, ControlSetText, ControlFocus, Send, Automating Winamp

Example(s)

 ControlSend, Edit1, This is a line of text in the notepad window., Untitled
SetTitleMatchMode, 2
ControlSend, , abc, cmd.exe ; Send directly to a command prompt window.