-
오토핫키 마우스 드래그로 툴팁 위치 변경오토핫키/라이브러리 2022. 5. 17. 09:04
https://open.kakao.com/me/apsalman
https://www.youtube.com/channel/UC6hW-NrL9CxDQd2IzWbekYA
#NoEnv OnMessage(0x201, "WM_LBUTTONDOWN") ToolTip, ( Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. ), 0, 0 return WM_LBUTTONDOWN(wParam, lParam, msg, hwnd){ PostMessage, 0xA1, 2 ; WM_NCLBUTTONDOWN KeyWait, LButton, U Loop { ; adapted from https://autohotkey.com/board/topic/32171-how-to-get-the-id-of-the-next-or-previous-window-in-z-order/ hwnd := DllCall("GetWindow", UPtr, hwnd, UInt,2) ; 2 = GW_HWNDNEXT ; GetWindow() returns a decimal value, so we have to convert it to hex SetFormat, integer, hex hwnd += 0 SetFormat, integer, d ; GetWindow() processes even hidden windows, so we move down the z oder until the next visible window is found if (DllCall("IsWindowVisible", UPtr, hwnd) = 1) { WinGetClass, cClass, ahk_id %hwnd% if (cClass == "SysShadow")||(cClass == "Alternate Owner")||(cClass == "HH Parent")||(cClass == "tooltips_class32") ||(cClass == "DummyDWMListenerWindow")||(cClass == "EdgeUiInputTopWndClass")||(cClass == "ApplicationFrameWindow") ||(cClass == "TaskManagerWindow")||(cClass == "Qt5QWindowIcon")||(cClass == "Windows.UI.Core.CoreWindow") ||(cClass == "WorkerW")||(cClass == "Progman")||(cClass == "Internet Explorer_Hidden") continue else break } } WinActivate, ahk_id %hwnd% } Esc::exitapp
툴팁을 마우스로 클릭 후 자유자재로 위치 이동을 시킬 수 있는 함수를 소개한다.
파일 다운로드
원본 링크 : https://www.autohotkey.com/boards/viewtopic.php?f=6&t=42257
'오토핫키 > 라이브러리' 카테고리의 다른 글
오토핫키] 인터넷 현재 페이지 주소 URL 얻기 (0) 2022.11.12 오토핫키] WinGetPos 보다 정확한 WinGetPosEx (1) 2022.09.26 오토핫키 번역기 / 구글번역 연동 (1) 2022.05.14 오토핫키 이미지없이 이미지서치, 구이 Picture / 이미지 이진화 (0) 2022.05.12 오토핫키 PixelSearch 픽셀서치 타겟팅 찾은 것만 찾기 (0) 2022.05.08