Advertisement
Guest User

SET Master yes/no

a guest
May 23rd, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; USAGE: HOVER OVER HIT ANYWHERE BESIDES LINKS/BUBBLES/BUTTONS, HIT 1 OR 2 AS EXPLAINED BELOW
  2.  
  3. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  4. ; #Warn  ; Enable warnings to assist with detecting common errors.
  5. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  6. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  7. SetBatchLines -1
  8. SetKeyDelay -1
  9.  
  10. 1:: ; SELECTS YES AND SUBMITS
  11. Send {Click}
  12. Send {Tab 3}
  13. Send {Space}
  14. Send {Enter}
  15. return
  16.  
  17. 2:: ; SELECTS NO AND SUBMITS
  18. Send {Click}
  19. Send {Tab 3}
  20. Send {Right}
  21. Send {Enter}
  22. return
  23.  
  24. F6::Suspend, Toggle
  25. return
  26.  
  27. F7::ExitApp
  28. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement