Hallo,
ich will mir einen spammer bauen. So sieht die Form ungefähr aus:
Und jetz will ich mit den radio button eine anzahl auswählen und wenn ich auf activate drücke dann soll es sich hiden(Das weiß ich wie es geht mit den hiden). Jetzt soll er aber erst anfangen zu spammen wenn ich auf einen hotkey drücke.?!
ich will mir einen spammer bauen. So sieht die Form ungefähr aus:
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=d:\neuer ordner\koda_1.7.3.0\forms\spammer.kxf
$Form1_1 = GUICreate("Spammer", 212, 346, 191, 121)
$Label1 = GUICtrlCreateLabel("Text to Spam:", 8, 8, 86, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Input1tospam = GUICtrlCreateInput("Here the Text", 8, 32, 193, 21)
$Label2 = GUICtrlCreateLabel("How often to Spam:", 8, 64, 119, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Checkbox8 = GUICtrlCreateCheckbox("Checkbox8", 24, 136, 1, 9)
$Button1 = GUICtrlCreateButton("Activate", 56, 272, 97, 25)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Label3 = GUICtrlCreateLabel("Press F1 to start spamming", 8, 304, 130, 17)
$Label4 = GUICtrlCreateLabel("Press F3 to show the Menü", 8, 320, 133, 17)
$Label5 = GUICtrlCreateLabel("Wait between the last spam:", 8, 168, 170, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Radio1 = GUICtrlCreateRadio("1 sec", 8, 192, 49, 25)
$Radio2 = GUICtrlCreateRadio("2 sec", 56, 192, 49, 25)
$Radio3 = GUICtrlCreateRadio("3 sec", 112, 192, 49, 25)
$Radio4 = GUICtrlCreateRadio("5 sec", 8, 216, 49, 25)
$Radio5 = GUICtrlCreateRadio("10 sec", 56, 216, 49, 25)
$Radio6 = GUICtrlCreateRadio("15 sec", 112, 216, 49, 25)
$Radio7 = GUICtrlCreateRadio("20 sec", 8, 240, 49, 25)
$Radio8 = GUICtrlCreateRadio("25 sec", 64, 240, 49, 25)
$Radio9 = GUICtrlCreateRadio("30 sec", 120, 240, 49, 25)
$Radio10 = GUICtrlCreateRadio("1x", 8, 88, 41, 25)
$Radio11 = GUICtrlCreateRadio("2x", 48, 88, 41, 25)
$Radio12 = GUICtrlCreateRadio("3x", 80, 88, 49, 25)
$Radio13 = GUICtrlCreateRadio("5x", 8, 112, 33, 25)
$Radio14 = GUICtrlCreateRadio("10x", 48, 112, 41, 25)
$Radio15 = GUICtrlCreateRadio("15x", 88, 112, 49, 25)
$Radio16 = GUICtrlCreateRadio("20x", 8, 136, 33, 25)
$Radio17 = GUICtrlCreateRadio("25x", 48, 136, 33, 25)
$Radio18 = GUICtrlCreateRadio("30x", 88, 136, 41, 25)
GUISetState(@SW_SHOW)