Page 1 of 1

Type Out Clipboard

Posted: Fri Jan 28, 2022 1:32 pm
by matt
I have a text box which does not allow paste. I would like TypeItIn to type out the contents of the clipboard. Is there a way to do this?

I tried:
{Var1 GetClip}{Var1}

But turns out that actually pastes the contents of Var1 and doesn't type it?

Thank you!

Re: Type Out Clipboard

Posted: Sat Jan 29, 2022 9:59 am
by Wavget
{Var1 GetClip}{Var1} copies the content of the clipboard into variable #1 and then types variable #1.

You can verify that it types the content by slowing things down a little bit

{Var1 GetClip}{Speed 250}{Var1}

This may also help the textbox to recognize it as typing.