Functions | |
| debugon () | |
| Set debug mode. | |
| debugoff () | |
| Unset debug mode. | |
| geterror () | |
| Get last error message. | |
| showline () | |
| Show running line. | |
|
|
Unset debug mode. After this statement script execution will be resumed normally, if it was in debugging mode. Can be placed anywhere in script. |
|
|
Set debug mode. After this statement script execution will be paused after each line is executed. In log will be written next line to execute. In addition a debug window will open, to watch variables values. To execute next line click on 'Run script' button. Can be placed anywhere in script. Another method gfor debugging is to use relevant writelog() functions, and using the special error variable. |
|
|
Get last error message. Get last error message, as clear text. |
|
|
Show running line.
Highlight the source line which is about to run. |