Interestingly, the IS documentation doesn't talk about how to use the PascalScript debugger. It's pretty easy to use:
* Run -> Toggle Breakpoint (F5) toggles a breakpoint (i.e., execution pauses on this line of code)
* Run -> Step Into (F7) steps to the next line of code; if a function, the cursor will jump inside the function
* Run -> Step Over (F8) steps to the next line of code without stepping inside functions
* Run -> Target Setup (Ctrl+Q) lets you debug the code that runs when you install
* Run -> Target Uninstall (Ctrl+Q) lets you debug the code that runs when you uninstall
As noted previously, float/hover the mouse over a variable to see its current value.
HTH
Bill