Commands & Syntax > Commands > Macro Flow Control >

www.perfectkeyboard.com

 

Debug BREAK POINT - < -dbp- > ... [Pro]

 

Debug BREAK POINT
<-dbp->
Available in: Professional edition

Debugger build in this program allows user to walk through macro step-by-step. It is possible to let run macro in normal speed until it reaches "-dbp-" debug break point (there can be many of them within macro). The debug break point just stops macro execution in debugger. When macro is not running in debugging mode then this command has no effect.

 

 

Example (Macro Steps):

 

1

<#> <#> This macro shows how to use 'debug break point'

2

Macro execution: ONLY COMMANDS

3

Message SHOW "" : "Message 1" (other parameters: x = -100, y = -100, Window title = Message, Buttons = OK, Timeout (seconds) = , Always on top = ).

4

Message SHOW "" : "Message 2" (other parameters: x = -100, y = -100, Window title = Message, Buttons = OK, Timeout (seconds) = , Always on top = ).

5

Debug BREAK POINT

6

Message SHOW "" : "Message 3" (other parameters: x = -100, y = -100, Window title = Message, Buttons = OK, Timeout (seconds) = , Always on top = ).

Example (Plain Text):

 

<#> This macro shows how to use 'debug break point'

<#>

<cmds>

<msg>(-100,-100,"Message 1","Message",1)

<msg>(-100,-100,"Message 2","Message",1)

<-dbp->

<msg>(-100,-100,"Message 3","Message",1)