|
Keyword |
<#Type> |
|
Parameters |
Any text string, including Special Symbols and Variables. |
|
Action |
Emulates keyboard activity (e.g. for text input). |
|
Remarks |
Parameter string for this command can include Special Symbols (e.g. “Escape”, “Home”, “BackSpace”, etc.) and Variables (*str1, *int1, etc.). |
Important Note Any text after <#Type> command is treated as a parameter through the end of the file. <#Type> should be the last keyword in the PenCommand. To output '<' character use '<<'.
Examples:
// type 'John Smith'
<#type>John Smith
// type String0 variable
<#type><*str>
// type Ctr+C
<#Type><*ctr_dn>c<*ctr_up>
// type Alt+F and then type 'o'
<#Type><*alt_dn>f<*alt_up>o
// type Alt+T, then twice 'cursor down', then 'Enter'
<#Type><*alt_dn>T<*alt_up><*down><*down><*return>
See Also