Info Posted February 11, 2008 Posted February 11, 2008 (edited) #include <GUIConstants.au3> $Form1 = GUICreate("Form1", 177, 63, 193, 125) $Input1 = GUICtrlCreateInput("BlaBla1", 16, 8, 145, 21) $Button1 = GUICtrlCreateButton("Click", 32, 32, 105, 25, 0) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Exit Case $msg = $Button1 Sleep ( 1000 ) Send ( $Input1) EndSelect WEnd Let's say I write "BlaBla1" in the Input place, I want it to wait a second and write "BlaBla1"... Thanks. Edited February 11, 2008 by Info
Zedna Posted February 11, 2008 Posted February 11, 2008 Send ( GUICtrlRead($Input1)) Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now