igromanru

AutoIt auto increment

Apr 29th, 2014 (edited)
2,568
0
Never
1
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