CygnusX1 Posted March 30, 2016 Share Posted March 30, 2016 Hello, AutoIt People! I've about pulled out my hair trying to capture the text of tooltips from an application not created from AutoIt. I have looked at all the documentation, Google searches, endless tries, failures across the board. I've tried... WinActivate($sTitle) MouseMove(512, 224, 1) ;over the control Sleep(3000) ;display tooltip $hWnd = ControlGetHandle($sTitle, "", 2502) ConsoleWrite(_GUIToolTip_ToolExists($hWnd) & @lf) ;comes back false $hTool = WinGetHandle($sTitle) ;handle of window containing control ; how do you get the $iID $arr = _GUIToolTip_GetToolInfo($hWnd, $hTool, $iID) ;$iID How do you get the Identifier of the tool? I'm at a complete loss. Thank you. Cygnus Link to comment Share on other sites More sharing options...
willichan Posted March 31, 2016 Share Posted March 31, 2016 Take a look here I had a similar need, and found this post by Melba23 most helpful My UDFs: Barcode Libraries, Automate creation of any type of project folder, File Locking with Cooperative Semaphores, Inline binary files, Continue script after reboot, WinWaitMulti, Name Aggregator, Enigma, CornedBeef Hash Link to comment Share on other sites More sharing options...
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