Moin Leute,
Würde mir gerne ein AutoIt Programm schreiben doch bin recht überfragt weil ich das seit Jahren nicht benutzt hab.
Das Programm ist total Simpel. Ich hab eine GUI mit Start und Stop - Bei Start soll er in google Chrome auf festgelegte Koordinaten drücken und bei Stop halt stoppen. Cool wäre auch noch wenn ich ein Counter hätte der mir anzeigt wie oft geklickt wurde. Die Klicks sollen ausgeführt werden ohne dass ich Chrome offen hab
Mein GUI sieht folgendermaßen aus:
C
- #include <ButtonConstants.au3>
- #include <GUIConstantsEx.au3>
- #include <WindowsConstants.au3>
- #Region ### START Koda GUI section ### Form=
- $Geldbot = GUICreate("Geldbot", 388, 185, 236, 150)
- $Button1 = GUICtrlCreateButton("Start", 32, 56, 137, 57)
- $Button2 = GUICtrlCreateButton("Stop", 216, 56, 137, 57)
- GUISetState(@SW_SHOW)
- #EndRegion ### END Koda GUI section ###
- While 1
- $nMsg = GUIGetMsg()
- Switch $nMsg
- Case $GUI_EVENT_CLOSE
- Exit
- EndSwitch
- WEnd