Skip to content

Instantly share code, notes, and snippets.

@TaylorJadin
Last active January 11, 2021 05:35
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save TaylorJadin/8bad4f2ca365d91d890662010b8c9553 to your computer and use it in GitHub Desktop.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Run, "C:\Program Files (x86)\TC-Helicon\GOXLR\GoXLR App.exe"
WinWait, GOXLR App
While WinExist(GOXLR App)
{
Sleep 100
WinClose, GOXLR App
Send {Enter}
}
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment