[오토핫키] 티스토리 블로그 인증
·
오토핫키
winHttp := ComObjCreate("WinHttp.WinHttpRequest.5.1") winHttp.Open("GET","http://nevercmecry.tistory.com/173") ; 주소 들어가는 부분.winHttp.Send("") winHttp.WaitForResponse( ) ;Data:= winHttp.ResponseText ifinstring, Data, authongoto, Go Else{msgbox,,관리자에게 문의하세요. , 사용 하실 수 없습니다.ExitApp} Go:msgbox, 스크립트 실행return ;;;;;;;;;;;;;;;;;;;;;;;;;; 해당게시글에 autoon이라는 문자열이 있으면 Go로 감.
[오토핫키] Edit 창 누르면 공백으로 바뀌기
·
오토핫키
Gui, Add, Text,, Click anywhere in the Edit control. Gui, Add, Edit, r9 w200 vMyEdit +HWND_Edit, Text to appear inside the edit control (omit this parameter to start off empty). Gui, Show OnMessage(0x201, "WM_LBUTTONDOWN") return WM_LBUTTONDOWN(wParam, lParam) { global _Edit if (A_GuiControl = "MyEdit") ControlSetText,,, ahk_id %_Edit% } GuiClose: ExitApp
[오토핫키] 활성화 된 창 제목과 경로 가져오기
·
오토핫키
F1:: ; messagebox path of active window WinGet pid, PID, A ; Get WMI service object. wmi := ComObjGet("winmgmts:") ; Run query to retrieve matching process(es). queryEnum := wmi.ExecQuery("" . "Select * from Win32_Process where ProcessId=" . pid) ._NewEnum() ; Get first matching process. if queryEnum[process] { tempclipboard := % process.CommandLine ; e.g., "C:\Program Files (x86)\Notepad++\note..