핫키를 등록하고 구글 검색을 합니다.
; Search highlighted term in Google
#g::
{
bak = %clipboard%
Clipboard =
SetKeyDelay, 40 ; could be set at the top of the script instead.
Send, {ctrl down}{c down}{c up}{ctrl up}
ClipWait, 2
if ErrorLevel
{
MsgBox, The attempt to copy text onto the clipboard failed.
return
}
Run, http://www.google.com/search?q=%Clipboard%
clipboard = %bak%
}
Return
핫키로 윈도우+g (Google)를 등록합니다.
Send ^c 를 입력하였을때에 클립보드 복사가 잘 이루어지지 않았습니다.
SetKeyDelay, 40 ; could be set at the top of the script instead.
Send, {ctrl down}{c down}{c up}{ctrl up}
위와 같이 변경하였습니다.
'Programming > AutoHotKey' 카테고리의 다른 글
[ahk] 하루패드 단축키 생성 (0) | 2016.01.06 |
---|---|
[AHK] Fn 키를 누르는 수고를 줄이기 위해, AHK 코드를 작성합니다. (0) | 2015.12.21 |
[AHK] SplitPath (0) | 2015.04.08 |
[AHK] 한영전환 없이 (0) | 2015.04.08 |
[AHK] 두벌식보다 편한 것은...? (1) | 2015.01.08 |
댓글