2
votes

I tried to bind the key-combination CTRL+SHIFT+f to ⊞ Win+z with the following command in the autohotkey configuration file:

z::Send ^{Shift}/

But this does not work. It seems to me, the not all three keys are "presed" together. Any idea how to fix it?

1

1 Answers

7
votes

; Windows-z is "#z" ; Ctrl-Shift-F is "^+f"

#z::Send, ^+f

; if this fails for any reason ,try

; Send, {Ctrl Down}{Shift down}f{Shift up}{Ctrl up}

; instead