You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On AutoHotkey you can declare remap in IfWinActive and the remap will occur only on windows that match the condition
Example: Remapping LAlt to F11 in World of Warcraft
AutoHotkey:
IfWinActive, World of Warcraft
{
*~LAlt::
send, {F12down}
KeyWait, LAltsend, {F12up}
return
}
ahk_x11:
*~LAlt::
IfWinActive, World of Warcraft
{
send, {F12down}
KeyWait, LAltsend, {F12up}
return
}
That means that you have to repeat the condition for each keybind related to the window
IfWinActive is a useful feature for example to avoid game remaps to aplpy when "alt-tabbed" on an other window
The text was updated successfully, but these errors were encountered:
On AutoHotkey you can declare remap in IfWinActive and the remap will occur only on windows that match the condition
Example: Remapping LAlt to F11 in World of Warcraft
AutoHotkey:
ahk_x11:
That means that you have to repeat the condition for each keybind related to the window
IfWinActive is a useful feature for example to avoid game remaps to aplpy when "alt-tabbed" on an other window
The text was updated successfully, but these errors were encountered: