Hyflex Posted October 26, 2014 Posted October 26, 2014 (edited) Hey Guys, I saw this bit of code on a different website recently and am trying to do something slightly different with it. $vMousePos = MouseGetPos() $vWin = DllCall("user32.dll", "hwnd", "WindowFromPoint", "int", $vMousePos[0], "int", $vMousePos[1]) If you run the above code, you'll get two variables being the handle and then the title. From the handle only (Because there are multiple windows open with the same title) I want to be able to retrieve the class, this will enable me to to do a simple: If $vClass = "TextExampleHere" Then ;WinActivate("[CLASS:" & $vClass & "]") WinActivate($vClass) ; Unsure what ones correct... EndIf Any ideas? Edited October 26, 2014 by Hyflex
Moderators Melba23 Posted October 26, 2014 Moderators Posted October 26, 2014 (edited) Hyflex,A search of the Help file for "handle to classname" brought up _WinAPI_GetClassName which seems to be just what you require. As to syntax, you would need:WinActivate("[CLASS:" & $vClass & "]")once you have the classname. But why not use the handle directly? M23 Edited October 26, 2014 by Melba23 Typo Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Reveal hidden contents ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Hyflex Posted October 26, 2014 Author Posted October 26, 2014 On 10/26/2014 at 9:33 AM, Melba23 said: Hyflex, A search of the Help file for "handle to classname" brought up _WinAPI_GetClassName which seems to be just what you require. As to syntax, you would need: WinActivate("[CLASS:" & $vClass & "]") once you have the classname. But why not use the handle directly? M23 Hi Melba23, I had a search but I didn't search for that phrase, if you saw my browser history too it's full of hundreds of google and autoit searchs but yes that seems to be what I need. Well, it's possible for the window the mouse is hovering over isn't the intended window and the only way I can do a check is by comparing the classname because some days the windows might be called "Window 1", "Window 1" and "Window 1" but other days they might be "Window", "Window 5", "Window 10" and using the WinTitleMatchMode option doesn't quite cover it enough. Classname comparison is the best option for me. Thanks M23
Moderators Melba23 Posted October 26, 2014 Moderators Posted October 26, 2014 Hyflex,My comment was related to the use of the classname in the WinActivate code - once you have identified the correct window by classname you can simply use its handle to activate it. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Reveal hidden contents ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
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