Last night, as I was registering for an online account with my healthcare provider, I experienced complications when I tried pasting the password I generated using KeePass Password Safe. The page I was on didn’t allow pasting, so I had to find another way to submit my password.
AutoIt to the rescue. I used it to create a very simple script that allows you to enter your password, then it waits 10 seconds so you can put the cursor in the password box on the web page before it types that text for you in the two input fields for the password. Simple, but it saved me tons of time.
$a=inputBox (“Pastype”, “Paste your password:”)
Msgbox (48, “Pastype”,”You have 10 seconds…”,5)
Send ($a{TAB}$a)