Sendkeys » History » Revision 3
Revision 2 (Per Amundsen, 12/23/2018 10:49 AM) → Revision 3/9 (Per Amundsen, 12/23/2018 10:49 AM)
_Added in 3.3_ */sendkeys [-u] <keys|text>* Send keys or unicode text to the active window. _Check "here":https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.sendkeys.send?view=netframework-4.7.2 to see the syntax for sending keys._ syntax._ *Switches* -u - Send "unicode":https://en.wikipedia.org/wiki/Unicode text to the active window. <keys|text> - Key combination or unicode text to send to the active window. *Example* <pre> ; Send CTRL + t keys to the active window. /sendkeys ^t ; Send unicode emoji to the active window. //sendkeys -u $chr(55357) $+ $chr(56832) </pre>