Debugger tools

Icon Name Description
Run (CTRL+F9) Executes the script and closes the debugger. Does not take into account any breakpoints.
Run (F9) Executes the script but does not close the debugger. If breakpoints are set, the script is stopped at the corresponding code line and can be continued from this position.
Set / Remove Breakpoint (F5) Sets or removes a breakpoint at the current position.
Step Into (F7) Executes the current code line. If this statement is CallSystem, the debugger branches into the script being called.
Procedure Step (F8) Executes the current code line.
Stop (CTRL+F2) Ends the script and closes the debugger.
Quick Monitoring Shows the current variable values.