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!
Type Out Clipboard
Re: Type Out Clipboard
{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.
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.