PenCommand name: ALL
// Select all text (Ctrl+A)
// this PenCommand works in Word
<#type><*ctr_dn>a<*ctr_up>
You can easy implement some [CTRL]+… PenCommands, such as Copy ([CTRL]+[C]), Cut ([CTRL]+[X]), Undo ([CTRL]+[Z]), Paste ([CTRL]+[V]) etc.
PenCommand name: ALL
// Select all text
<#Type><*ctr_dn><*home><*shift_dn><*end><*shift_up><*ctr_up>
PenCommand name: SPELL
// Open Corrector Window for all current documents
// first: select all text (see the PenCommand in sample2)
<#Macro>all
// then open corrector window
<#corr>
PenCommand name: WEB
// Open PhatWare web site
<#Start>iexplorer http://www.phatware.com/
PenCommand name: INBOX
// Open inbox
<#Start>pMail
PenCommand name: TM
// Place the '™' symbol into text.
<#Type>™
See Also