XxBloodyHell

Types clipboard in instead of having to use paste(ctrl+v).

Oct 13th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.30 KB | None | 0 0
  1. #include <Misc.au3>
  2.  
  3. Local $Clipz = ClipGet()
  4.  
  5. TrayTip("Automated Paste", "Press -Scroll Lock(ScrLk)- to type in clipboard. Script will exit when complete.", 10)
  6.  
  7. Func shit()
  8.     Exit
  9. EndFunc
  10.  
  11. Func lol()
  12.     send($Clipz)
  13.     shit()
  14. EndFunc
  15.  
  16. While 1
  17. sleep(50)
  18. if _IsPressed(91) Then
  19.     lol()
  20. EndIf
  21. WEnd
Advertisement
Add Comment
Please, Sign In to add comment