Website

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
Shekhar Singh
Posts: 115
Joined: 06 Dec 2022, 02:35

Website

Post by Shekhar Singh » 20 Mar 2023, 16:02

can ahk detect specific websites being used and program hotkeys with that the same way it does for apps or it isn't possible .

User avatar
mikeyww
Posts: 26600
Joined: 09 Sep 2014, 18:38

Re: Website

Post by mikeyww » 20 Mar 2023, 16:15

There are ways to use Acc or UI Automation to get a URL, but if Window Spy shows you a specific window title, it's easier, and you could then use it conditionally.

Code: Select all

#Requires AutoHotkey v1.1.33
SetTitleMatchMode 2
#If WinActive("AutoHotkey")
^F3::MsgBox 123
#If

Post Reply

Return to “Ask for Help (v1)”