Advertisement
Guest User

Untitled

a guest
Oct 7th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.28 KB | None | 0 0
  1. HotKeySet("{Esc}","STop_Loop") ;button to stop loop
  2. $inputbox = InputBox("Write the name of the win","Below you have to write the win name...") ;The Win name
  3. WinActivate($inputbox)
  4. While 1
  5.     Sleep(1000) ;1000=1sec
  6.     Send("test!")
  7.     Send("{Enter}")
  8. WEnd
  9. Func STop_Loop()
  10.     Exit
  11. EndFunc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement