// Control speed of printing the clipboard
Let>delay=.5
Getclipboard>clipboard
Let>clipboard_size={length(%clipboard%)}
Let>iterator=0
While>iterator<%clipboard_size%
let>SK_IGNORECAPS=1
Let>clipboard_text={copy(%clipboard%,%iterator%,1)}
sendtext>%clipboard_text%
let>iterator=iterator+1
Wait>%delay%
endwhile
[/snippet]
One of the most irritating things on the Internet is not being able to fill out web forms because they disable the paste functionality. This is my workaround, but there is something wrong when the clipboard begins with the character 0.
Rephrased, if you copy 01234 to the clipboard, it registers string length 4 in the debug! And sure enough, when it prints the characters, it omits 0.
Using an input of 1234 does not produce the same effect and registers the same length of 4.
Is this a bug? I'm including screenshots. MCS 15, Windows 10.

