Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 15th, 2012  |  syntax: Autohotkey  |  size: 0.71 KB  |  hits: 22  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ;
  2. ; AutoHotkey Version: 1.x
  3. ; Language:       English
  4. ; Platform:       Win9x/NT
  5. ; Author:         A.N.Other <myemail@nowhere.com>
  6. ;
  7. ; Script Function:
  8. ;       Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
  9. ;
  10.  
  11. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  12. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  13. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  14.  
  15. aktiv = false
  16.  
  17. ^!s::
  18. aktiv = true
  19. return
  20.  
  21. while aktiv = true
  22. {
  23.         Click 901, 713
  24.         Send passwordgoeshere,{Enter}
  25.         Sleep 500
  26.         Click 918, 601
  27.         Sleep 30000
  28.         Click 928, 657
  29.         Sleep 500
  30. }