Commands & Syntax > Commands > Macro Flow Control >

www.MacroToolworks.com

Send KEYSTROKES on <font color='#2E2EFE'>SLOWEST</font> rate - < fastoff > ... [Pro]

 

Send KEYSTROKES on SLOWEST rate
<fastoff>
Available in: Professional edition

The command changes the speed of keystrokes sending to the slowest rate. Macro keystrokes are sent to active application with a short delay in between them.

 

 

Example (Macro Steps):

 

1

<#> <#> This macro shows how to use 'faston/fastoff' command.

2

Run APPLICATION "notepad.exe" (other parameters: Parameters = , Folder path = , Window state = Normal). Macro execution waits for application to finish up to "0" seconds.

3

WAIT FOR Object = "WIN", Event = "ACT", Parameter = "Notepad", Timeout (seconds) = "10", Exact = "0"

4

Send KEYSTROKES on SLOWEST rate

5

This text is being inserted slower... \

6

Send KEYSTROKES as FAST as possible

7

...and this text is being inserted faster.

Example (Plain Text):

 

<#> This macro shows how to use 'faston/fastoff' command.

<#>

<execappex>("notepad.exe","","",0,0)<waitfor>("WIN","ACT","Notepad",10,0)<fastoff>This text is being inserted slower...

<faston>...and this text is being inserted faster.