Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  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. Gui,+AlwaysOnTop
  7.  
  8. Gui, Show , w250 h450, Contact
  9.  
  10. GUI, Add, Button, x20 y25 w104 h25 , Yes
  11. GUI, Add, Button, x20 y50 w104 h25 , Voicemail
  12. GUI, Add, Button, x20 y75 w104 h25 , Disconnect
  13. GUI, Add, Button, x20 y125 w104 h25 , Wrong contact
  14. GUI, Add, Button, x20 y150 w104 h25 , Wrong Number
  15. GUI, Add, Button, x20 y175 w104 h25 , Skip
  16. GUI, Add, Button, x20 y200 w104 h25 , Busy Signal
  17. GUI, Add, Button, x20 y250 w104 h25 , Fax
  18. GUI, Add, Button, x20 y275 w104 h25 , No Answer
  19. GUI, Add, Button, x20 y300 w104 h25 , Vmail Bus Name
  20. GUI, Add, Button, x20 y325 w104 h25 , Vmail Contact Only
  21. GUI, Add, Button, x20 y375 w104 h25 , Auto System
  22.  
  23. Return
  24.  
  25. ButtonYes:
  26. WinActivate, Hybrid - Google Chrome
  27. Sleep 25
  28. Send {Tab 6}
  29. Send {Space}
  30. Send {Tab}
  31. Send {Space}
  32. Send {Tab}
  33. Send {Space}
  34. Send {Tab}
  35. Send {Space}
  36. Send {Tab 2}
  37.  
  38. Return
  39.  
  40. ButtonVoicemail:
  41. WinActivate, Hybrid - Google Chrome
  42. Sleep 25
  43. Send {Tab 6}
  44. Send {Space}
  45. Send {Tab}
  46. Send {Down 2}
  47. Send {Tab}
  48. Send {Down 2}
  49. Send {Tab}
  50. Send {Down 2}
  51. Send {Tab}Voicemail
  52. Sleep 50
  53. Send {Tab}
  54.  
  55.  
  56. Return
  57.  
  58. ButtonDisconnect:
  59. WinActivate, Hybrid - Google Chrome
  60. Sleep 25
  61. Send {Tab 6}
  62. Send {Down 2}
  63. Send {Tab}
  64. Send {Down 3}
  65. Send {Tab}
  66. Send {Down 3}
  67. Send {Tab}
  68. Send {Down 3}
  69. Send {Tab 2}
  70.  
  71.  
  72. Return
  73.  
  74. ButtonWrongContact:
  75. WinActivate, Hybrid - Google Chrome
  76. Sleep 25
  77. Send {Tab 6}
  78. Send {Space}
  79. Send {Tab}
  80. Send {Space}
  81. Send {Tab}
  82. Send {Down 1}
  83. Send {Tab}
  84. Send {Down 1}
  85. Send {Tab 2}
  86.  
  87.  
  88. Return
  89.  
  90. ButtonFax:
  91. WinActivate, Hybrid - Google Chrome
  92. Sleep 25
  93. Send {Tab 6}
  94. Send {Down 1}
  95. Send {Tab}
  96. Send {Down 3}
  97. Send {Tab}
  98. Send {Down 3}
  99. Send {Tab}
  100. Send {Down 3}
  101. Send {Tab 2}
  102.  
  103. Return
  104.  
  105. ButtonWrongNumber:
  106. WinActivate, Hybrid - Google Chrome
  107. Sleep 25
  108. Send {Tab 6}
  109. Send {Space}
  110. Send {Tab}
  111. Send {Down 1}
  112. Send {Tab}
  113. Send {Down 2}
  114. Send {Tab}
  115. Send {Down 2}
  116. Send {Tab}Wrong Number
  117. Sleep 75
  118. Send {Tab}
  119.  
  120. Return
  121.  
  122. ButtonNoAnswer:
  123. WinActivate, Hybrid - Google Chrome
  124. Sleep 25
  125. Send {Tab 6}
  126. Send {Space}
  127. Send {Tab}
  128. Send {Down 2}
  129. Send {Tab}
  130. Send {Down 2}
  131. Send {Tab}
  132. Send {Down 2}
  133. Send {Tab}No answer
  134. Sleep 100
  135. Send {Tab}
  136.  
  137. Return
  138.  
  139. ButtonVmailBusName:
  140. WinActivate, Hybrid - Google Chrome
  141. Sleep 25
  142. Send {Tab 6}
  143. Send {Space}
  144. Send {Tab}
  145. Send {Space}
  146. Send {Tab}
  147. Send {Down 2}
  148. Send {Tab}
  149. Send {Down 2}
  150. Send {Tab}Voicemail with mention of business name
  151. Sleep 100
  152. Send {Tab}
  153. Return
  154.  
  155. ButtonVmailContactOnly:
  156. WinActivate, Hybrid - Google Chrome
  157. Sleep 25
  158. Send {Tab 6}
  159. Send {Space}
  160. Send {Tab}
  161. Send {Down 2}
  162. Send {Tab}
  163. Send {Down 2}
  164. Send {Tab}
  165. Send {Down 2}
  166. Send {Tab}Voicemail for contact with no mention of business name
  167. Sleep 100
  168. Send {Tab}
  169.  
  170.  
  171. Return
  172.  
  173. ButtonAutoSystem:
  174. WinActivate, Hybrid - Google Chrome
  175. Sleep 25
  176. Send {Tab 6}
  177. Send {Space}
  178. Send {Tab}
  179. Send {Space}
  180. Send {Tab}
  181. Send {Down 2}
  182. Send {Tab}
  183. Send {Down 2}
  184. Send {Tab}No answer through automated system
  185. Sleep 100
  186. Send {Tab}
  187.  
  188. Return
  189.  
  190. ButtonBusySignal:
  191. WinActivate, Hybrid - Google Chrome
  192. Sleep 25
  193. Send {Tab 6}
  194. Send {Space}
  195. Send {Tab}
  196. Send {Down 2}
  197. Send {Tab}
  198. Send {Down 2}
  199. Send {Tab}
  200. Send {Down 2}
  201. Send {Tab}Busy Signal
  202. Sleep 100
  203. Send {Tab}
  204.  
  205. Return
  206.  
  207. ButtonSkip:
  208. WinActivate, Hybrid - Google Chrome
  209. Sleep 25
  210. Send {Tab 12}
  211.  
  212. Return
  213. RAW Paste Data
  214.  
  215.  
  216. create new paste / api / trends / syntax languages / faq / tools / privacy / cookies / contact / dmca / advertise on pastebin / scraping / go
  217. Dedicated Server Hosting by Steadfast
  218. When this paste gets automatically deleted
  219. Top
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement