Difference between revisions of "autoit send ascii"

From thelinuxwiki
Jump to: navigation, search
(Created page with " sending special characters sending an exclamation point example: send ("{ASC 033}") category:autoit")
 
Line 6: Line 6:
 
example:
 
example:
 
  send ("{ASC 033}")
 
  send ("{ASC 033}")
 +
 +
the above example uses the DEC code with a leading zero.
 +
 +
[[http://www.autoitscript.com/autoit3/docs/appendix/ascii.htm autoit ascii code list]]
  
 
[[category:autoit]]
 
[[category:autoit]]

Revision as of 17:32, 4 March 2013

sending special characters

sending an exclamation point

example:

send ("{ASC 033}")

the above example uses the DEC code with a leading zero.

[autoit ascii code list]