| Stop debugging SHIFT+F2 |
 |
Stops any current debugging session, and disables the Script Debugger for the current
user. The Script Debugger does
not pause on breakpoints for the current user until it is restarted. |
| Start debugger - F2 |
 |
Enables the Script Debugger
for the current user. The Script Debugger pauses on
breakpoints. |
| Resume script execution - F9 |
 |
Advances from the current breakpoint to the next breakpoint. If there are no
other breakpoints, the script runs to completion. |
| Step over next function call - OPTION+F9 |
 |
Advances to the next evaluated line of script based on current conditions. The
Script Debugger skips any lines
of code that do not need to run because their conditions are not met. For example,
when the condition of an if statement is not true, the debugger skips
the code block for the condition. |
| Step into next function call - OPTION+F10 |
 |
When the Script Debugger
pauses on a method call, this control allows the user to advance to the first line of
executed code within the method call. Stepping into a method updates the current
position within the call stack. If the user does not have read access to the method
call, then this control acts like step over instead. |
| Step out of current function - OPTION+F11 |
 |
When the Script Debugger
pauses within a method call, this control allows the user to exit the current method
call and return to the calling script from the call stack. If the user is not within a
method call, then this control acts like step over instead. |