rejectpenguin Posted August 11, 2012 Posted August 11, 2012 (edited) Is there a way to send a number to a window regaurdless of if I have the shift key pressed down or not? ControlSend(windowName, "", "", "20"); Edited August 11, 2012 by rejectpenguin
stormbreaker Posted August 11, 2012 Posted August 11, 2012 (edited) This example could be what you are looking for: Example() Func Example() msgbox(64, "Open", "Open the Run Dialog") Local $hWnd = WinWaitActive("Run", "") ControlSetText($hWnd, "", "Edit1", "202020") EndFunc ;==>Example Edited August 11, 2012 by MKISH ---------------------------------------- :bye: Hey there, was I helpful? ---------------------------------------- My Current OS: Win8 PRO (64-bit); Current AutoIt Version: v3.3.8.1
rejectpenguin Posted August 11, 2012 Author Posted August 11, 2012 This example could be what you are looking for: Example() Func Example() msgbox(64, "Open", "Open the Run Dialog") Local $hWnd = WinWaitActive("Run", "") ControlSetText($hWnd, "", "Edit1", "202020") EndFunc ;==>Example This is a good solution, but isn't going to work in my case as I have no way to get the controlid of the window im using.
JohnOne Posted August 11, 2012 Posted August 11, 2012 ControlSend(windowName, "", "", "20",1); send keys raw AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
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