Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JoeGlines/d07440178ed9051137602a11facf6c15 to your computer and use it in GitHub Desktop.
Save JoeGlines/d07440178ed9051137602a11facf6c15 to your computer and use it in GitHub Desktop.
;*******************************************************
; 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