Getting 2 shortcodes to run Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
User avatar
HMPrintDesign
Posts: 8
Joined: 07 Dec 2017, 07:23

Getting 2 shortcodes to run

Post by HMPrintDesign » 18 May 2022, 05:31

Hello

I'm trying to get

Ctrl-Shift-H and Ctrl-Alt-P to run using Ctrol-Shift-M

I can get the first one to work, but the second is ignored.

^+M::
SendInput, ^+H
SendInput, ^!P
RETURN

Thank you in advance

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

Re: Getting 2 shortcodes to run  Topic is solved

Post by mikeyww » 18 May 2022, 05:51

I would try with lowercase letters. AHK will send the Shift key when needed. See :arrow: KeyHistory.

Code: Select all

^+m::Send ^H^!p
image220518-0655-001_cr.png
Key history
image220518-0655-001_cr.png (23.01 KiB) Viewed 174 times

User avatar
HMPrintDesign
Posts: 8
Joined: 07 Dec 2017, 07:23

Re: Getting 2 shortcodes to run

Post by HMPrintDesign » 18 May 2022, 05:59

perfect.. lowercase solved.... thank you thank you

Post Reply

Return to “Ask for Help (v1)”