Difference between revisions of "autoit send ascii"
From thelinuxwiki
(Created page with " sending special characters sending an exclamation point example: send ("{ASC 033}") category:autoit") |
|||
(One intermediate revision by one user not shown) | |||
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]] | ||
+ | [[category:winblows]] |
Latest revision as of 20:14, 19 June 2020
sending special characters
sending an exclamation point
example:
send ("{ASC 033}")
the above example uses the DEC code with a leading zero.