kraftydevil
kraftydevil

Reputation: 5246

AutoHotkey - press Ctrl+Alt only, without any characters

I can see that Ctrl+Alt+Delete is not possible with AutoHotkey, but what about just Ctrl+Alt?

Things I've tried:

; 1
#+y::
Send, {Ctrl}{Alt}
return

;2
#+y::
Send, {Ctrl down}
Send, {Alt down}
Send, {Alt up}
Send, {Ctrl up}
return

;3
#+y::
Send, {LCtrl down}
Send, {LAlt down}
Send, {LAlt up}
Send, {LCtrl up}
return

;4
#+y::
Send, !^
return

;5
#+y::
Send, {ctrl down}{alt down}{2}{alt up}{ctrl up}
return

Any ideas?

Upvotes: 0

Views: 291

Answers (2)

David Metcalfe
David Metcalfe

Reputation: 2412

The below will do what you want. It's also recommended you use SendInput going forward.

#+y::
SendInput, {Ctrl Down}{Alt Down}{Ctrl Up}{Alt Up}

Upvotes: 1

Bmore
Bmore

Reputation: 53

Try to specify the left or right ALT or CTRL keys

#+y::
Send, {LCtrl}{LAlt}
return

Upvotes: 0

Related Questions