ad777 Posted December 5, 2021 Posted December 5, 2021 (edited) hello all, This is a complete content about changing the Cursor: How the Cursor changes shape during movement or pressing a button... Log: #Added Animated Cursor Click Drag when using _WinAPI_CreateWindowEx #Added Animated Cursor Middle Mouse when using _WinAPI_CreateWindowEx #Added Animated Cursor Moving when using _WinAPI_CreateWindowEx #Added Animated Cursor Normal Click when using _WinAPI_CreateWindowEx #Added Animated Cursor Normal View when using _WinAPI_CreateWindowEx - #Added Animated Cursor Click Drag when using GuiCreate #Added Animated Cursor Middle Mouse when using GuiCreate #Added Animated Cursor Moving when using GuiCreate #Added Animated Cursor Normal Click when using GuiCreate #Added Animated Cursor Normal View when using GuiCreate AnimatedCursorEx_Gui.zip AnimatedCursorEx_WindowUpdated.rar AnimatedCursorEx_GUIUpdated.rar Edited February 26, 2022 by ad777 updating none
marcgforce Posted December 7, 2021 Posted December 7, 2021 Func _MouseIsOverHWnd($hWnd) ;to check if mouse is on or off GUI Local $bMouseOver If not WinActive($hWnd) then return False Local $aMousePos = MouseGetPos() Local $aWinPos = WinGetPos($hWnd) if ($aMousePos[0] < $aWinPos[0] Or $aMousePos[0] > $aWinPos[0] + $aWinPos[2]) Or ($aMousePos[1] < $aWinPos[1] Or $aMousePos[1] > $aWinPos[1] + $aWinPos[3]) Then $bMouseOver = False Else $bMouseOver = True EndIf Return $bMouseOver EndFunc ;==>_MouseIsOverHWnd Just checking if mouse is over gui...
ad777 Posted January 14, 2022 Author Posted January 14, 2022 (edited) #added Animated Cursor when using _WinAPI_CreateWindowEx Edited January 25, 2022 by ad777 none
ad777 Posted January 23, 2022 Author Posted January 23, 2022 (edited) UPDATED: #added moving animated cursor when using _WinAPI_CreateWindowEx #added normal animated view cursor when using _WinAPI_CreateWindowEx #added normal animated click cursor when using _WinAPI_CreateWindowEx Edited January 25, 2022 by ad777 none
ad777 Posted January 24, 2022 Author Posted January 24, 2022 (edited) #Fixed moving animated cursor when using _WinAPI_CreateWindowEx Edited January 25, 2022 by ad777 none
ad777 Posted January 24, 2022 Author Posted January 24, 2022 (edited) #added Animated_CursorClickDrag when using _WinAPI_CreateWindowEx Edited January 25, 2022 by ad777 none
ad777 Posted January 24, 2022 Author Posted January 24, 2022 (edited) #Fixed normal animated click cursor when using _WinAPI_CreateWindowEx Edited January 25, 2022 by ad777 none
ad777 Posted January 24, 2022 Author Posted January 24, 2022 (edited) #Added Animated Cursor Middle Mouse for _WinAPI_CreateWindowEx Edited January 25, 2022 by ad777 none
ad777 Posted January 24, 2022 Author Posted January 24, 2022 (edited) #added Animated Cursor Normal View when using GuiCreate #added Animated Cursor Normal Click when using GuiCreate Edited January 25, 2022 by ad777 none
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now