Skip to content

Instantly share code, notes, and snippets.

@gisikw
Created June 29, 2017 13:06
Show Gist options
  • Save gisikw/e987abaeef566972fb7b3cb29a594acf to your computer and use it in GitHub Desktop.
Save gisikw/e987abaeef566972fb7b3cb29a594acf to your computer and use it in GitHub Desktop.
AutoHotKey script for faster audio recording and editing!
#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.
SetTitleMatchMode, 2
; Jump to first marker, centered on screen
XButton1::
Send, {Del}
Send, {Home}
Send, ^!{Right}
Return
; Send a Marker command to Adobe Audition even while backgrounded
.::
SoundBeep, 1200, 100
ControlSend, DroverLord - Window Class20, {m}, Adobe Audition
Return
@VladHonda
Copy link

Nice script. Keep up the good work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment