Ich will gerade anfangen Auto It zu lernen und wollte dazu als übung nen kleinen spammer schreiben. Spammen tut er schon aber nicht das richtige.
Hier mein bisheriger Sourch Code (sehr billig)
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Spammer = GUICreate("Spammer", 384, 91, 192, 124)
$Box1 = GUICtrlCreateInput("Bitte gib hier einen Text ein....", 0, 0, 377, 21)
$Button1 = GUICtrlCreateButton("Start Spam", 8, 56, 75, 25, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Stop Spam", 96, 56, 75, 25, $WS_GROUP)
$Button3 = GUICtrlCreateButton("Exit", 184, 56, 75, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Box1
Case $Button1
While 1
Sleep(200)
Send($Box1)
Send("{enter}")
WEnd
Case $Button2
Case $Button3
Send ("!{F4}")
EndSwitch
WEnd
PS : Das Programm Spammt immer "3" und ich habe keine ahnung warum :/
Ok danke dir
#Move + Close pls






