how to send Left Alt Shift 1?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
User avatar
raphaelfreeman
Posts: 3
Joined: 01 Jun 2018, 06:33
Contact:

how to send Left Alt Shift 1?

18 May 2021, 10:29

I want to force my keyboard to be English rather than a toggle. I have setup Left Alt Shift 1 to do so in Windows.

However, when I try and put

Code: Select all

Send,   {Shift}{LAlt}1
it doesn’t work.

I also tried variations like

Code: Select all

Send, +<!1
but that didn’t work either
User avatar
boiler
Posts: 16926
Joined: 21 Dec 2014, 02:44

Re: how to send Left Alt Shift 1?

18 May 2021, 11:53

The first one wouldn’t work because you’re sending an immediate press and release of each key. The second one had a chance of working, but it apparently did not. Try this:

Code: Select all

Send, {Shift down}{LAlt down}1{LAlt up}{Shift up}
User avatar
balawi28
Posts: 27
Joined: 09 Mar 2021, 13:53
Contact:

Re: how to send Left Alt Shift 1?

18 Nov 2021, 18:13

Try something like this:

Code: Select all

s::
Send {LAlt down}{Shift down}
Send {LAlt up}{Shift up}
Try it with the same order of lines, don't rearrange the code.

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: doodles333, iamMG and 164 guests