Advertisement
igromanru

AutoIt auto increment

Apr 29th, 2014
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.13 KB | None | 0 0
  1. HotKeySet("^v","_paste")
  2.  
  3. While 1
  4.     Sleep(199)
  5. WEnd
  6.  
  7. Func _paste()
  8.     $num = Number(ClipGet())+1
  9.     ClipPut($num)
  10.     Send($num)
  11. EndFunc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement