Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andyspicer/d2b0d045b84761f8c8cebf2be7f1b70f to your computer and use it in GitHub Desktop.
Save andyspicer/d2b0d045b84761f8c8cebf2be7f1b70f to your computer and use it in GitHub Desktop.
;; Credit: Duncan Halliday https://members.iracing.com/jforum/posts/list/1925/3552959.page#11764145
;; FFB UP
#IfWinActive, ahk_exe iRacingSim64DX11.exe
6Joy23::
IfWinExist ahk_exe irFFB.exe
{
WinActivate
Sleep, 100 ;
Send, {Tab 6}
Send, {Up 2}
}
IfWinExist ahk_exe iRacingSim64DX11.exe
{
WinActivate
}
return
#IfWinActive
;; FFB DOWN
#IfWinActive, ahk_exe iRacingSim64DX11.exe
6Joy2::
IfWinExist ahk_exe irFFB.exe
{
WinActivate
Sleep, 100 ;
Send, {Tab 6}
Send, {Down 2}
}
IfWinExist ahk_exe iRacingSim64DX11.exe
{
WinActivate
}
return
#IfWinActive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment