Code: Select all
| Type out the input string. Only non-alphabetic character
| currently handled is space.
Sub Type(InStr)
/declare char string local
/declare loopctr int local
/for loopctr 1 to ${InStr.Length}
/varset char ${InStr.Mid[${loopctr},1]}
/if (!${char.Length}) {
/keypress space chat
} else {
/keypress ${char} chat
}
/next loopctr
/returnThanks.
