Usando o atalho automático com um gamepad

3

Eu posso mapear botões em um gamepad assim:

Joy2::
Send {Up down}  ; Hold down the left-arrow key.
KeyWait Joy2  ; Wait for the user to release the joystick button.
Send {Up up}  ; Release the left-arrow key.
return

No entanto, quero remapear o bloco direcional para fazer a mesma coisa. Como posso fazer isso?

    
por Phenom 09.02.2010 / 08:52

1 resposta

5

Tutorial do eixo joystick Auothotkey; link

Ou você pode usar o KeyHistory para descobrir qual é o nome do Autoit da chave;

key_detect.ahk:

!k::
#InstallKeybdHook
KeyHistory
return

Executar, pressione Alt + K. Abre a lista de chaves detectadas.

    
por 09.02.2010 / 23:40