Why this autohotkey script not minimizing my current window?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
kingston123
Posts: 1
Joined: 22 May 2022, 02:12

Why this autohotkey script not minimizing my current window?

Post by kingston123 » 22 May 2022, 02:14

I used this script for years by pressing "Right Alt" key to minimize my current window:

Code: Select all

RAlt::
WinMinimize, A
return
But now it's not working I mean it's not minimizing the any window.

Rohwedder
Posts: 7616
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Why this autohotkey script not minimizing my current window?

Post by Rohwedder » 22 May 2022, 03:37

Hallo,
maybe your keyboard layout has changed? Has "Right Alt" become an "AltGr" key?
Try:

Code: Select all

LControl & RAlt:: ;AltGr
WinMinimize, A
return

Post Reply

Return to “Ask for Help (v1)”