User Guide > Scripting > Script Debugging > Debug Toolbar and Menu Options
Was this helpful?
Debug Toolbar and Menu Options
The debugging toolbar options allow you to navigate your code as you debug it. You can also access these options from the EZscript main menu. The toolbar and the EZscript main menu is displayed when the context is an EZscript Editor or dialog.
The debug toolbar and menu options:
Icon
Menu Option
Description
Debug
Allows you to start the debugging process.
Note:  This icon remains disabled during a debugging session.
Skip All Breakpoints (CTRL+B)
Allows you to skip all breakpoints.
Resume (F8)
Allows you to resume a paused execution till next breakpoint or till the end.
Step Over (F6)
Step over will execute the whole function at one go and stop on the next executable line after the function call. You can use this option if you are not interested in debugging a particular function or method, and you want the debugger to execute that function completely as one entire step.
Step Into (F5)
Step into will stop on the first executable line inside a function. You can use this option if you want to debug into the code of a function or method, so the next step is to get inside that function and continue debugging step-by-step.
Note:  If you use this option for any expression which is not calling a function then it works like Step Over.
Stop and Restart (F10)
Restarts the debugging session from the beginning.
Stop (F9)
Stops the debugging session.
Note:  
- Exiting EZscript editor during a live debugging session stops the debugging session.
- All icons other than the Debug icon are enabled only during a debugging session. The Debug icon remains disabled during a debugging session.
- You can edit and save a script during a debugging session.
Last modified date: 07/26/2024