Windows Contrast: Left Alt + Left Shift + Print Screen

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
Vladimir
Posts: 16
Joined: 27 Nov 2019, 23:12

Windows Contrast: Left Alt + Left Shift + Print Screen

Post by Vladimir » 06 Oct 2022, 00:01

I would like to create a script that would recreate a combination for a Windows screen contrast setting that can be found in
Control Panel > Accessibility/Ease of Access

Left Alt + Left Shift + Print Screen.

Press this combination once and windows switches to high contrast mode, press it twice and it switches back.

How can I activate this function using a script?

User avatar
boiler
Posts: 16902
Joined: 21 Dec 2014, 02:44

Re: Windows Contrast: Left Alt + Left Shift + Print Screen

Post by boiler » 06 Oct 2022, 05:03

See if this works:

Code: Select all

Send, {LAlt down}{LShift down}{PrintScreen}{LShift up}{LAlt up}

Post Reply

Return to “Ask for Help (v1)”