So ich habe mir eben mit Koda ein GUI erstellt jedoch bin ich garnicht zufrieden.
Das einzige was wirklich funktinoiert ist die Menüleiste.
Die Radioboxen und Checkboxen sind nicht anklickbar.
Ebenso ist der Input nicht selektierbar.
Woran liegst?
Das einzige was wirklich funktinoiert ist die Menüleiste.
Die Radioboxen und Checkboxen sind nicht anklickbar.
Ebenso ist der Input nicht selektierbar.
Woran liegst?
PHP Code:
#Region ### START Koda GUI section ### Form=c:\users\parani4x\documents\autoit sripte\forms\empty bot form.kxf
$MainWin = GUICreate("SS & LB Points Bot", 546, 303, 210, 137)
$Pic1 = GUICtrlCreatePic("C:\Users\parani4x\Documents\AutoIT Sripte\SS LB Wurm Bot\img 1.jpg", 264, 8, 273, 233, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
$Pic2 = GUICtrlCreatePic("C:\Users\parani4x\Documents\AutoIT Sripte\SS LB Wurm Bot\img 2.jpg", 0, 0, 545, 281, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
$Start = GUICtrlCreateButton("Start", 64, 192, 129, 41)
GUICtrlSetFont(-1, 22, 400, 0, "Narkisim")
$Build = GUICtrlCreateInput("OQCjUqmLqOBZhsFO8fhBAub5N", 264, 248, 273, 21, $ES_CENTER, BitOR($WS_EX_CLIENTEDGE,$WS_EX_STATICEDGE))
GUICtrlSetFont(-1, 9, 800, 0, "MS Sans Serif")
$Controls = GUICtrlCreateGroup("Controls", 40, 24, 161, 97)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$running = GUICtrlCreateLabel("Running: 0h", 64, 152, 79, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$autosell = GUICtrlCreateCheckbox("Auto Sell ON/OFF", 48, 40, 153, 17)
$sellnormal = GUICtrlCreateRadio("Normal", 72, 56, 129, 17)
$sellgold = GUICtrlCreateRadio("Dont sell gold", 72, 72, 129, 17)
$autoident = GUICtrlCreateCheckbox("Auto Ident", 48, 88, 153, 17)
$Info = GUICtrlCreateMenu("&Info")
$Howto = GUICtrlCreateMenuItem("How To", $Info)
$Interface = GUICtrlCreateMenuItem("Interface", $Info)
$MenuItem8 = GUICtrlCreateMenuItem("Ckecklist", $Info)
$about = GUICtrlCreateMenu("&Options")
$Shortkeys = GUICtrlCreateMenuItem("Shortkeys", $about)
$MenuItem1 = GUICtrlCreateMenuItem("Hide / Unhide", $about)
$options = GUICtrlCreateMenu("&FAQ")
$FAQsub = GUICtrlCreateMenuItem("FAQ", $options)
$FAQ = GUICtrlCreateMenu("&Update")
$Updatesub = GUICtrlCreateMenuItem("Update", $FAQ)
$Update = GUICtrlCreateMenu("&About")
$Version = GUICtrlCreateMenuItem("Version", $Update)
$epvp = GUICtrlCreateMenuItem("Elite PvPers", $Update)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $sellnormal
Exit
EndSwitch
WEnd