Gawish Posted September 15, 2013 Posted September 15, 2013 (edited) how to change this values with textboxs ? full code expandcollapse popupHotKeySet ("q", "myfunceq") HotKeySet ("w", "myfuncew") HotKeySet ("e", "myfuncee") HotKeySet ("r", "myfuncer") HotKeySet ("t", "myfuncet") HotKeySet ("y", "myfuncey") HotKeySet ("u", "myfunceu") HotKeySet ("i", "myfuncei") HotKeySet ("o", "myfunceo") HotKeySet ("p", "myfuncep") opt("SendKeyDelay",0) opt("SendKeyDownDelay",0) While 1 ; endless Loop Sleep(10) ; avoid high CPU usag WEnd Func myfunceq() send("{F4 2}{3 2}") send("{F1 2}{1 2}") EndFunc Func myfuncew() send("{F4 2}{6 2}") send("{F1 2}{2 2}") EndFunc Func myfuncee() send("{F4 2}{5 2}") send("{F1 2}{3 2}") EndFunc Func myfuncer() send("{F4 2}{5 2}") send("{F1 2}{4 2}") EndFunc Func myfuncet() send("{F4 2}{1 2}") send("{F1 2}{5 2}") EndFunc Func myfuncey() send("{F4 2}{1 2}") send("{F1 2}{6 2}") EndFunc Func myfunceu() send("{F4 2}{2 2}") send("{F1 2}{7 2}") EndFunc Func myfuncei() send("{F4 2}{1 2}") send("{F1 2}{8 2}") EndFunc Func myfunceo() send("{F4 2}{1 2}") send("{F1 2}{9 2}") EndFunc Func myfuncep() send("{F4 2}{1 2}") send("{F1 2}{0 2}") EndFunc Edited September 15, 2013 by Gawish
Gawish Posted September 15, 2013 Author Posted September 15, 2013 ok what about this ??! Send($Input_1 = GUICtrlCreateInput("", 70, 20, 90, 20))
michaelslamet Posted September 15, 2013 Posted September 15, 2013 Does really understand what you're trying to do. If you could explain, I think you will get a better help
Gawish Posted September 15, 2013 Author Posted September 15, 2013 ex: i want to make key "Q" send the value in text box in my form
Danyfirex Posted September 15, 2013 Posted September 15, 2013 (edited) do not bump. maybe this: Local $Input_1 = GUICtrlCreateInput("", 70, 20, 90, 20) Func myfuncer() send("{F4 2}"& GUICtrlRead($Input_1)) send("{F1 2}{4 2}") EndFunc saludos Edited September 15, 2013 by Danyfirex Gawish 1 Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut
Gawish Posted September 15, 2013 Author Posted September 15, 2013 do not bump. maybe this: Local $Input_1 = GUICtrlCreateInput("", 70, 20, 90, 20) Func myfuncer() send("{F4 2}"& GUICtrlRead($Input_1)) send("{F1 2}{4 2}") EndFunc saludos u amazing it work big thanks
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