Need help making a hotkey that clicks Win+Ctrl+Right arrow key when I click the right arrow key Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
theboom123
Posts: 5
Joined: 29 Jun 2022, 00:49

Need help making a hotkey that clicks Win+Ctrl+Right arrow key when I click the right arrow key

Post by theboom123 » 30 Nov 2022, 23:45

Hello all, I am looking to make an accessible hotkey that clicks Win+Ctrl+Right arrow keyboard on keyboard whenever i click the right arrow on keyboard. I made this and was looking for help how to correct it:

Code: Select all

Send Right::
Send {LWin Down}
Sleep 50
Send {Ctrl Down}
Sleep 50
Send {Right Down}
Sleep 50
Send (Ctrl Up}
sleep 50
Send {LWin Up}
sleep 50
Send {Right Up}
Return

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

Re: Need help making a hotkey that clicks Win+Ctrl+Right arrow key when I click the right arrow key  Topic is solved

Post by Rohwedder » 01 Dec 2022, 00:37

Hallo,
try:

Code: Select all

$Right::
Send {LWin Down}
Sleep 50
Send {Blind}{Ctrl Down}
Sleep 50
Send {Blind}{Right Down}
sleep 50
Send {Blind}(Ctrl Up}
sleep 50
Send {Blind}{LWin Up}
sleep 50
Send {Right Up}
Return

Post Reply

Return to “Ask for Help (v1)”