|
You last visited: Today at 13:36
Advertisement
AutoIt Button
Discussion on AutoIt Button within the General Coding forum part of the Coders Den category.
04/15/2008, 12:41
|
#1
|
elite*gold: 0
Join Date: Apr 2008
Posts: 13
Received Thanks: 36
|
AutoIt Button
Hi,
ich habe mir mal nen pickup bot erstellt
mit nem button der funct aber ich möchte noch ein button hinzufügen für AutoSend und Fish Bot
Und so habe ich mein erster Butto erstellt aber ich gebe genau das gleiche ein aber es kommt kein 2 button warumP?
Und ich möchte halt noch nen buton erstellen das der pick up ausgeht wie geht das??
------------------------------------------------
#include <GUIConstants.au3>
GUICreate("AmelieMaus Hack")
$Button1 = GUICtrlCreateButton( "PICKuP", 50, 50 ,50 ,50, $BS_ICON)
GUISetState (@SW_SHOW)
While 1
Send("{^}")
Wend
Func PickUp ()
EndFunc
|
|
|
04/17/2008, 02:45
|
#2
|
elite*gold: 0
Join Date: Apr 2007
Posts: 543
Received Thanks: 112
|
#include <GUIConstants.au3>
GUICreate("AmelieMaus Hack")
$Button1 = GUICtrlCreateButton( "PICKuP", 50, 50)
$Button2 = GUICtrlCreateButton( "Autosend", 50, 100)
$Button3 = GUICtrlCreateButton( "Fish Bot", 50, 150)
GUISetState ()
While 1
$MSG = GUIGetMsg()
Select
Case $MSG = $GUI_EVENT_CLOSE
Exit
Case $MSG = $Button1
;hier funktionscall
Case $MSG = $Button2
;hier funktionscall
Case $MSG = $Button3
;hier funktionscall
EndSelect
WEnd
Exit
|
|
|
 |
Similar Threads
|
autoit der button entpackt keine au3 datei
05/21/2013 - AutoIt - 20 Replies
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("mein levelbot mit moblock", 800, 600, 500, 200)
$Button1 = GUICtrlCreateButton("pickupbot", -20, 112, 187, 81, 0)
$Button2 = GUICtrlCreateButton("Mein einlog und relog bot :top:", -28, 0, 619, 113, 0)
$Button3 = GUICtrlCreateButton("autoschlagbot", 164, 112, 187, 81, 0)
|
AutoIt Aufgabe für Button
07/29/2010 - AutoIt - 3 Replies
Ich habe gestern zum erstenmal mit Autoit gearbeitet
(naja eher rumgespielt^^)
Und mir tat sich gleich ein Problem auf:
Wie bekomme ich dass hin, wenn ich auf einen Button klicke / oder einen Menüpunkt, dass AutoIt dann eine Aufgabe ausführt?
GuiCtrlCreateButton("Update", 20, 460, 100, 30)
Wie bekomme ich es hin, dass mir AutoIt beim draufklicken dann folgendes ausführt?:
|
AutoIt Script in Button einbauen?
06/09/2010 - AutoIt - 5 Replies
Hey,
nach langer Zeit wollt ich wieder mit AutoIt hantieren hab aber leider keine Ahnung mehr wie ich z.B. nen RunScript in nen Button einbaue.
bitte um Hilfe! >_<
Froce
|
GUI Button function w/ autoit
01/02/2009 - Conquer Online 2 - 12 Replies
kk im a newbie at makin bots but heres the code i have now...
okay im a TOTAL newb at making stuff with autoit, so far i can only make simple things with clicking and what not...but i ran into a problem today. my bot creates a gui that instructs you on how to use the bot, what i need help with is how to create a hotkey that "Starts" the bot(the opposite of the exiting hotkey)
HotKeySet("^!x", "QuitProg")
Func QuitProg()
Exit
EndFunc
thats the exit hotkey that i got, but i was wondering...
|
All times are GMT +1. The time now is 13:37.
|
|