Search the Community
Showing results for tags 'button click'.
-
Hi So I am trying to click the green button, this button is not always in the same place. So fare I am trying to click it by finding the color but there is also something else with the same color on the screen (circled in yellow) that is causing issues. Is there a way to use the Title and Class of the window (can't be just the window as there are more than one with the same name). How does AutoIt Info get this information?
- 4 replies
-
- help
- button click
-
(and 2 more)
Tagged with:
-
Hello, I have a Logitech MX500 mouse, this has 7 buttons plus a wheel. I am trying to figure out how to detect clicks on three of the buttons on this mouse but have been unable to do so. I am not running any Logitech software just the standard Windows 7 driver. The buttons are all working fine but when I try to figure out which button was clicked unable to detect three of the buttons. Using this code snippet I am able to see all the button presses with the exception of these three marked by '?'. Is there some alternate method for detecting button clicks? I have been searching for example but have yet to find anything. Thanks... #include <Misc.au3> Dim $a While 1 For $a = 1 To 100 If _IsPressed($a) Then ConsoleWrite("you pressed " & $a & @CRLF) Next WEnd
-
Hi all, I have searched this forum for a solution. But i couldn't find one. I have a third party application and it has a button. I need to start my script when that button is clicked. I have tried with "GUIGetMsg" function but didn't work. I have all the information about that program like window title and button handle etc. Please help.