Script Debugger Buttons
The Script Debugger page includes five buttons to allow you to step through and execute your script:

These buttons can be used to control/resume script execution when the debugger stops at a particular line. Note that each button also has an associated keyboard shortcut.
-
Step Over
Resumes execution from the current line and stops at the next line (even if the current line is a function call). Keyboard shortcut is space.
-
Step Into
Resumes execution from the current line and stops at the first line in any function call made from the current line. Keyboard shortcut is 'i'.
-
Step Out
Resumes execution from the current line until the end of the current function, and stops at the first line following the line from where this function was called -or-until the next break point -or-until the program terminates (either by error or by normal completion). Keyboard shortcut is 'o'.
-
Continue
Resumes program execution from the current line until the next break point -or-until the program terminates. Keyboard shortcut is shift+space.
-
Cancel
Aborts execution of the program from the current line. Keyboard shortcut is 'q'.