AutoHotKey_L 1.1.09.02 - 재컴파일 버전 - 뭔가 다른 재 빌드
'Computer_IT > AutohotKey' 카테고리의 다른 글
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 (2) | 2013.01.03 |
---|---|
Autohotkey + mypeople(마이피플) 메시지 전송. (0) | 2012.12.31 |
AutoHotKey_L 1.1.09.02 - 재컴파일 버전
http://l.autohotkey.net/ 에서 받은 소스를 재 컴파일 한것
--바뀐 내용
bitblt 함수 사용시 마지막 인자 값 : SRCCOPY 을...
SRCCOPY | CAPTUREBLT 로 변경...
(모비즌-Mobizen)에서 색상 못잡을때 사용)...
'Computer_IT > AutohotKey' 카테고리의 다른 글
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 - 뭔가 다른 재 빌드 (0) | 2013.02.01 |
---|---|
Autohotkey + mypeople(마이피플) 메시지 전송. (0) | 2012.12.31 |
Autohotkey + mypeople(마이피플) 메시지 전송.
,60000 ; ConnectTimeout
,30000 ; SendTimeout
,120000] ; ReceiveTimeout - Random.org recommends a long timeout.
DAUMURL := "http://air21.daum.net/air21/widget/sendMessage.daum?" ; 수신 URL
SENDER := "ME" ; 보낸 사람
MYPEOPLEKEY := "z4*****************" ; 마이피플의 키
HttpGetRequest("안녕하세요")
HttpGetRequest(MSG){
global Timeouts
global DAUMURL, SENDER, MYPEOPLEKEY
SENDMSG := DAUMURL
. "key="
. MYPEOPLEKEY
. "&from="
. SENDER
. "&content="
. MSG
HTTP := ComObjCreate("WinHttp.WinHttpRequest.5.1")
HTTP.Open("GET", SENDMSG, False)
HTTP.SetRequestHeader("User-Agent", "Internet Explorer 9")
HTTP.SetTimeouts(Timeouts*)
HTTP.Send()
if (HTTP.Status != 200)
return OnError(HTTP.Status, HTTP.ResponseText)
return HTTP.ResponseText
}
OnError(Status, String){
MsgBox % String
return ""
}
목적 : 스크립트 동작중... 에러 메시지 전송 할때 응용...
나머진 응용...
한글 전송은 ... ahk 파일을 UTF8+BOM 으로 저장하면 아무것도 안하고 사용가능.
(UTF8 은 깨짐)...
2013. 02. 15일 추가 내용
- 위 방법은 위젯 서비스를 통한 우회 방법이나 2월중 위젯 서비스 종료됨
- UTF8+BOM 은 Windows 7 일 경우에만 해당 XP에선 적용 안됨
'Computer_IT > AutohotKey' 카테고리의 다른 글
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 - 뭔가 다른 재 빌드 (0) | 2013.02.01 |
---|---|
AutoHotKey_L 1.1.09.02 - 재컴파일 버전 (2) | 2013.01.03 |