This file contains 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
#Requires AutoHotkey v2 | |
#SingleInstance force | |
myGui := Gui() | |
myGui.OnEvent("Close", GuiClose) | |
myGui.Add("Radio", "vSDK", "SDK").OnEvent("Click", ShowText) | |
myGui.Add("Radio","vChannel yp", "Channel Review").OnEvent("Click", ShowText) | |
myGui.Add("Radio","vEmail yp", "Email").OnEvent("Click", ShowText) | |
myGui.show() | |
Return |
This file contains 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
txt := inputhook("v") | |
::test:: | |
{ | |
txt.tacker := "test" | |
SendInput 'default --string ' | |
txt.start() | |
} | |
::test2:: |
This file contains 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
txt := inputhook("v") | |
::test:: | |
tracker := "test" | |
SendInput % "default --string " | |
txt.start() | |
return |
This file contains 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
settimer displayCursor, 10 | |
return | |
displayCursor() | |
{ | |
if a_cursor = 'IBeam' | |
{ | |
MouseGetPos ,,, &OutputVarControl, 2 | |
hwnd := ControlGetFocus('A') | |
if (OutputVarControl = hwnd) |
This file contains 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
$F14:: | |
$F13:: | |
$F15:: | |
; Separate the modifier keys(Ctrl, Alt, Shift) from the hotkey(F4,F6...) | |
RegexMatch(a_thishotkey, "O)^\$(?<mod>[\^+!#]+)?(?<key>.*)$", matched) | |
mod := matched.mod | |
key := matched.key | |
; Translate certain hotkeys to something ProgramName can understand |
This file contains 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 GUI Udemy courses at: * | |
; https://the-automator.com/GUIs?src=f * | |
; * | |
; 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 * | |
;****************************************************************************** | |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. |
This file contains 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
gui add, edit, w100 vName | |
gui add, radio, vRBTitle, Mr. | |
gui add, radio,, Mrs. | |
gui add, radio,, Dr. | |
gui add, checkbox, vCBTrouble,Troubleshoot | |
gui add, checkbox, vCBCall,Call | |
gui add, button, w75 gShowVars, Create Message | |
gui show |