also fang lieber nicht gleich mit einem Speedhack an sondern arbeite dich langsam vor fang wie "fast" alle Programmierer mit einem Hallo_Welt Programm an
hier ein Vorschlag als msgbox
Quote:
|
msgbox(0, "Hallo", "Hallo Welt ich habe mein erstes Programm mit AutoIt gescriptet *stolz sei*")
|
oda das der Text in einer Inputbox erscheint ^^
Quote:
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Hallo", 139, 64, 193, 125)
$Input1 = GUICtrlCreateInput("", 8, 8, 121, 21)
$Button1 = GUICtrlCreateButton("Sag was", 32, 32, 75, 25, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
GUICtrlSetData($Input1,StringFormat("Hallo Welt"))
EndSwitch
WEnd
|
und hier sind noch paar nützlich programme
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]