Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Pasting into TurboTax

654 views
Skip to first unread message

Porter Smith

unread,
Mar 3, 2017, 11:45:02 PM3/3/17
to
Why the ******** doesn't TurboTax allow me to paste text from my
clipbopard? Specifically the password for my financial institutions when
I'm importing forms.

Sherlock

unread,
Mar 4, 2017, 4:13:57 AM3/4/17
to
Someone thought they were improving password security by discouraging the use of the clipboard.

A relatively simple work around is to use a program such as AutoHotKey to "paste" from the clipboard: https://autohotkey.com

On Windows, I use the following script that uses Ctrl-Alt-v to "paste" from the clipboard into text fields that block Ctrl-v:

^!v:: ; paste without formatting
plainpaste:
StringReplace, clipboardt, clipboard, `r`n, %A_Space%, All
clipboardt := RegExReplace(clipboardt, "` {2,}", "` ")
StringLeft, 1st, clipboardt, 1
IfInString, 1st, %A_Space%
StringTrimLeft, clipboardt, clipboardt, 1
Send %clipboardt%
clipboardt =
return


Porter Smith

unread,
Mar 4, 2017, 9:42:47 AM3/4/17
to
Sherlock <sh02...@gmail.com> wrote in
news:4e83f6ea-539b-4c31...@googlegroups.com:
I am so glad TT is looking out for me :)

Nice idea, but it will take me longer to type the script than to type the
12 character passwords my password generator generates.

Sherlock

unread,
Mar 4, 2017, 2:02:48 PM3/4/17
to
It only takes Ctrl-c and Ctrl-v to "type the script" ;)

The benefit to using the AutoHotKey script is that the solution applies to all programs that block a text box paste.

Sherlock

unread,
Mar 4, 2017, 4:24:09 PM3/4/17
to
For those interested, I improved the original AutoHotKey script:

^!v:: ; a paste replacement
tclipboard := RegExReplace(clipboard, "\r\n$")
SendInput {Raw}%tclipboard%
return

al...@shocknetwork.com

unread,
Jan 24, 2018, 4:50:26 AM1/24/18
to
It doesn't appear to work for TurboTax 2017. :(

Sherlock

unread,
Jan 24, 2018, 12:12:52 PM1/24/18
to
AutoHotKey and the AutoHotKey script provided do work for TurboTax 2017
and other programs where I've use it (Windows 7).


Message has been deleted
Message has been deleted

al...@shocknetwork.com

unread,
Jan 31, 2018, 7:41:45 PM1/31/18
to
I apologize. You're right, it does work. I tried the wrong keys since I'm on a Mac using VNC. For those interested, with a MAC on VNC into Windows, you should be using control-command-v, but it does not work over an SSH tunnel with RealVNC. Using Chicken of the VNC over an SSH tunnel, it can be done with ctrl-option-command-v. I don't know the keys for RealVNC over SSH.

tjmi...@gmail.com

unread,
Apr 7, 2019, 10:28:59 PM4/7/19
to
Thank you soooo much for this script and the link to Autohotkey. I would not get through TT without it. I upgraded all my finance passwords to long gibberish. Impossible to type them all.

osman...@gmail.com

unread,
Apr 10, 2019, 10:53:08 AM4/10/19
to
The "improved" script works great! I'm on native Windows 10 with TurboTax 2018. Many thanks!
0 new messages