I'm working on a testing program for another program (the target), and I want to
recognize some special buttons. For buttons with text, I can read the text, but if
there is an icon on the button instead I just get a emtpy string.
The target program wiill display a tooltip with text for the button if a human
makes the mouse hover over it, and while a tooltip is visible I can read the
the tip text with WinGetText (or _GUIToolTip_HitTest). Unfortunately, the
fact that a tooltip is on the screen does not really tell me it is the tooltip
for that button, and usually, there is not a tooltip being displayed.
Is there some way to get the text for a tooltip associate with a specific button?
Can I send some message to the button control to make its corresponding tooltip
appear so I can read the text withWinGetText.
I've Googled around but I only seem to find info on how to build/display tooltips
from an Autoit program, not how to work with tooltips of a target program.