@SCORNI werde ich durch lesen
für alle anderen hier ist mein code ich will möchte gern die befehle für folgendes wissen.
Button "start" = soll den bot startn
Button "save" = soll die anderung in den Inputboxen speichern (das sind coords für mousemove)
Button "Exit" = soll sovol den Bot als auch die GUI schließen
Input 1,2,3 = soll die coords speichern
Und das Bild natürlich
danke dass ihr mir geholfen habt
Quote:
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=C:\Users\\Desktop\Autoit\Hallo.kxf
$Form1 = GUICreate("Form1", 625, 443, 193, 125)
$Button1 = GUICtrlCreateButton("Start", 8, 376, 75, 25)
$Button2 = GUICtrlCreateButton("Save", 96, 376, 75, 25)
$Button3 = GUICtrlCreateButton("Exit", 184, 376, 75, 25)
$Input1 = GUICtrlCreateInput("Input1", 496, 32, 121, 21)
$Pic1 = GUICtrlCreatePic("", 8, 8, 332, 340)
$Input2 = GUICtrlCreateInput("Input2", 496, 56, 121, 21)
$Input3 = GUICtrlCreateInput("Input3", 496, 80, 121, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|