(text file run through hexdump. the last linefeed is being added by vim)
the OnlyKey is eating some of the spaces, giving two horizontal tabs, and a literal “\t”. uwotm8?.
after trying several more formatting arrangements, I tried using password: \t\t abcd ([space]\t\t[space]abcd)
This is the desired output; but it shows (at a minimum) that the documentation is incorrect. The format specified in the documentation shows spaces padding each ‘\t’ or ‘\r’ sequence, which doesn’t work.
Ideally, this hack would not be necessary for the end user to deal with. I would recommend making the following changes to the UI:
replace the “Tab after […] Return after […] None” radio buttons with check boxes, which eliminates the need for a 'None" option.
for each of the “Tab After […]” and “Return After […]” check boxes, add a text box where the user may enter the number of tabs/returns they want.
Default this box to “1” and have that value inserted from the event handler that fires when the checkbox changes state to checked, and clear the box if it is unchecked.
Overall I think this product is fantastic and well worth the price. But the UI needs some work (replacing the whole slot config with a graphical block depiction of the full output string that the user can interact with would be really cool, but possibly a bit much for JavaScript). Anyhow, thanks for your work and the support!
@t11 You are right, I did miss that in the documentation. I’d still argue that there are better and more intuitive (or at least, less error prone) ways to implement this functionality. Asking users to manually enter escape sequences into fields that are intended for other information IMO is a pretty clear indication that something is wrong with the UI.
How about a read-only text box that displays the output that would be produced:
As I have just try to set a slot for a site where it need to TAB before entering user login after page is loaded I have tried to select “Tab before UserName” and insert another TAB in “UserName” as “\t my_user_name” and it did not work.
Just writing “[TAB]\t my_user_name” her also the working combo is with " \t my_user_name" this really is not clear in the doc and need lot of trial and error.