script.clearBreakpoint
| Syntax |
script.clearBreakpoint ()
|
| Params |
None required
|
| Action |
Changes the current line in the target script window from a breakpoint to a normal line of UserTalk code that will execute normally rather than stopping.
|
| Returns |
True if the status of the line was changed, false if it was not a breakpoint
|
| Examples |
Open examples.counter. From the Script menu, set a breakpoint on either of the executable lines of code in the script. Now type and execute the following line in the Quick Script window: script.clearBreakpoint () » true
Notice that the breakpoint is cleared and the line returns to its former status as an executable line of code. |
| Notes |
Breakpoints are only in effect when a script is being run in Frontier's debugger. Scripts running normally are not affected by breakpoints. This is an advanced Frontier verb of primary interest to implementers and advanced scripters. It is not necessary to understand it to use Frontier effectively for most tasks. A breakpoint can be cleared manually by command-clicking on the statement's item marker (the stop hand).
|
| See Also |
script.setBreakpoint
|