Project

General

Profile

Sendkeys » History » Revision 4

Revision 3 (Per Amundsen, 12/23/2018 10:49 AM) → Revision 4/9 (Per Amundsen, 12/23/2018 10:50 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._ 

 *Switches* 

 -u - Send "unicode":https://en.wikipedia.org/wiki/Unicode text instead of keys. to the active window. 

 <keys|text> - Key combination or unicode text to send. 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>