I am looking for a way to create a button to paste plain text. i.e. Edit -> Paste Special -> Text.
I found the function @Command([EditPasteSpecial])
but it only pops up the Paste Special dialog box.
Is there a way to automatically select Text from this list? Some way to automate the keystrokes for "T" and "Enter" maybe?
I tried adding a line for @Char(84)
and @Char(13)
to simulate these keystrokes, but that didn't work. Any other options?
Thanks.