Project

General

Profile

Sendkeys » History » Revision 2

Revision 1 (Per Amundsen, 12/23/2018 10:46 AM) → Revision 2/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 for 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 /sendkeys -u $chr(55357) $+ $chr(56832) 
  
 </pre>