Advertisement
Guest User

Bubble Survey helper

a guest
May 23rd, 2014
486
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. SetBatchLines -1
  6. SetKeyDelay -1
  7.  
  8. 1::
  9. Send {Tab}
  10. Send {Space}
  11. return
  12.                  
  13. 2::
  14. Send {Tab}
  15. Send {Right}
  16. return
  17.  
  18. 3::
  19. Send {Tab}
  20. Send {Right 2}
  21. return
  22.  
  23. 4::
  24. Send {Tab}
  25. Send {Right 3}
  26. return
  27.  
  28. 5::
  29. Send {Tab}
  30. Send {Right 4}
  31. return
  32.  
  33. 6::
  34. Send {Tab}
  35. Send {Right 5}
  36. return
  37.  
  38. 7::
  39. Send {Tab}
  40. Send {Right 6}
  41. return
  42.  
  43. 8::
  44. Send {Tab}
  45. Send {Right 7}
  46. return
  47.  
  48. 9::
  49. Send {Tab}
  50. Send {Right 8}
  51. return
  52.  
  53. 0::
  54. Send {Tab}
  55. Send {Right 9}
  56. return
  57.  
  58. F6::
  59. Suspend, Toggle
  60. return
  61.  
  62. F7::ExitApp
  63. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement