Pressionar várias teclas modificadoras usando o AutoHotkey?

0

Isso deve ser bem fácil de fazer, mas não consigo entender. Para abrir um link em uma nova guia e alternar para ele no Chrome, pressione ctrl + shift e clique em. Eu quero um botão no meu mouse para mapear para ctrl + shift. Eu tentei o seguinte, nenhum deles funciona:

XButton1::+^
XButton1::+ctrl
XButton1::^shift
XButton1::SendInput, {shift}{ctrl}
XButton1::Send, {shift}{ctrl}

Como faço isso?

    
por Leo Jiang 03.03.2017 / 21:03

1 resposta

0

Tente isto:

XButton1:: Send {XButton1} ; If you remove this line, XButton1 loses its native function

XButton1 & LButton::                    ;  XButton1 becomes a prefix key
    If WinActive("ahk_exe chrome.exe")  ; open a link in a new tab:
        Send, {Shift Down}{Ctrl Down}{LButton Down}{LButton Up}{Ctrl Up}{Shift Up}
    ; If WinActive("ahk_exe notepad.exe")
        ; do sth
    ; If WinActive...
        ; do sth else   
return

link

    
por 03.03.2017 / 23:08

Tags