I am interested in making a quick widget to paste some information onto the windows clipboard if I pressed a button, for example
If I press an icon it puts the text "here is some information" into the clipboard which I can then paste into any other application.
Is this possible?
EDIT: Found an answer using the command line. Assign the following to OnClick (or however you want to trigger it)
Code:
!Run=cmd /c echo|set /p=YOUR TEXT HERE|clip
Downside: It briefly flashes the command window, and depending on your string you may have to escape certain characters. I wish I could get it to work with Windows Scripting but so far I haven't been able to make it work.