|
Send Keys Loop
A variation of the Send Keys function, this function will repeat the key presses until your cancel it.
A variation of the Send Keys function, this function will repeat the key presses until your cancel it by pressing ESCAPE, or the hotkey again.
Parameters
Text
- The text to insert when the function is executed.
Type
- You can either Simulate the text as if you typed it, or use the Playback type to allow Windows to ask for input.
Delay
- The time, in milliseconds (1000 equals one second), to pause between each loop/playback.
Please note that certain text is replaced before insertion, to allow for the following special scenarios:
<NEXTNO> will insert the next number instead
<CR> will go to the next line (Return)
<TAB> will insert a TAB character
Examples:
Text: Sincerely, - inserts the text Sincerely, as if you typed it.
Text: This is my signature.<CR> - Inserts the text This is my signature and goes to the next line.
Text: <NEXTNO> is my next number<CR> - Inserts the text 1001 is my next number and goes to the next line, if your previous NextNumber macro was used to initiate the count at 1000 and the changeby value to 1.
|