I'm constantly activating Firefox then hitting Ctrl+L to activate the location bar and do a search or type a url.
Ideally I can be in any application and hit Ctrl+L and firefox will activated with the location bar activated and ready for input. In steps AutoHotkey scripting...
I've tried this and it doesn't seem to work. From what I've read, tilda is the "pass-through"
^l::
IfWinExist ahk_class MozillaUIWindowClass
{
WinActivate
Send ~^l
}
Thanks for the help.