Created
June 28, 2022 18:31
-
-
Save JoeGlines/d07440178ed9051137602a11facf6c15 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
ControlSetText,ComboBox1,Cool,ahk_exe notepad.exe ;Set Text | |
ControlSetText,Edit1,Cool,ahk_exe notepad.exe ;Set Text | |
ControlSetText,Sample,This is Cool,ahk_exe notepad.exe ;Set Text | |
ControlGetText,Var,ComboLBox1,Font ahk_exe notepad.exe ;Get Text | |
ControlGet,var,Choice,,ComboLBox1,ahk_exe notepad.exe | |
MsgBox % Var | |
ControlSend,ComboBox1,Just a test,ahk_exe notepad.exe ;Sending keystrokes | |
ControlSendRaw,ComboBox1,Just a test!,ahk_exe notepad.exe ;Sending keystrokes | |
;********************Main Edit window- Get specific line*********************************** | |
ControlGet, OutputVar, Line, 2, Edit1, ahk_exe notepad.exe | |
MsgBox % OutputVar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment