Caps question Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
hemsith14_
Posts: 296
Joined: 07 Nov 2020, 08:37

Caps question

Post by hemsith14_ » 10 Aug 2022, 15:14

Code: Select all

h::
z::
Send, {Text}%A_ThisHotkey%
Return
Hey, how do I get the code above to always send capitalized letters?
Thanks

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

Re: Caps question  Topic is solved

Post by mikeyww » 10 Aug 2022, 19:31

Code: Select all

$h::
$z::Send % Format("{:U}", SubStr(A_ThisHotkey, 2))

hemsith14_
Posts: 296
Joined: 07 Nov 2020, 08:37

Re: Caps question

Post by hemsith14_ » 10 Aug 2022, 20:51

Thanks :D

Post Reply

Return to “Ask for Help (v1)”