Guest User

Background Control Script

a guest
Oct 31st, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn  ; Enable warnings to assist with detecting common errors.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5.  
  6. SetTitleMatchMode, 2
  7.  
  8. Numpad8::
  9. ControlSend,, {Up}, ahk_exe flappinghead.exe
  10. Return
  11.  
  12. Numpad5::
  13. ControlSend,, {Down}, ahk_exe flappinghead.exe
  14. Return
  15.  
  16. Numpad4::
  17. ControlSend,, {Left}, ahk_exe flappinghead.exe
  18. Return
  19.  
  20. Numpad6::
  21. ControlSend,, {Right}, ahk_exe flappinghead.exe
  22. Return
Advertisement
Add Comment
Please, Sign In to add comment