Highlight Premiere’s Effects Panel find box with ONE keypress - updated vid - macros for beginners!

If you already know how to use AHK, you only need to watch the first 2 minutes to understand how to do this. HERE IS THE SIMPLE AHK SCRIPT WE MADE TODAY: #singleinstance force #ifwinactive ahk_exe adobe premiere F1::findbox(““) F2::findbox(“corner pin“) F3::findbox(“blur“) F4::findbox(“three way color“) findbox(theText){ sendinput, ^ !7 sendinput, ^\ sendinput, {backspace} sleep 10 sendinput, %theText% } And here is autohotkey: Here’s my 4 hr tutorial: If you want your AHK scripts to start up with your computer, just make a SHORTCUT to the script, and put that shortcut in your Startup folder. I think mine is here: C:\Users\[YOUR_USERNAME]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup Or maybe it’s here??? C:\ProgramData�
Back to Top