Jump to content

AutoIt script to put text in the clipboard every X seconds.


Recommended Posts

You can use this to get msgs to clipboard --> ClipPut("/-") and use Send("^v") to paste on the application. I'll provide links so you can read more. If you don't understand, feel free to let us know :)

HotKeySet("{ESC}", "_Terminate")

While 1
    Run("notepad.exe")
    WinWaitActive("Untitled - Notepad")
    ClipPut("/-")
    Send("^v")
    Sleep(1000)
WEnd

Func _Terminate()
    Exit
EndFunc   ;==>_Terminate

https://www.autoitscript.com/autoit3/docs/functions/ClipPut.htm

https://www.autoitscript.com/autoit3/docs/keywords/While.htm

https://www.autoitscript.com/autoit3/docs/functions/Sleep.htm

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...