Hi All,
There are ways that I skip execution.�� Usually in loop processing.�� If you change the index of a loop, (in the debugger change the number and accept) it will continue on from that index point.�� You can also easily use run to here, to get to the top of a method, then change the method with false ifTrue: [ ... ] than accept to restart the method.�� You could also set a temp var like runThis := true.�� Wrap you code in runThis ifTrue: [ ]. ��then while debugging you can change the value of runThis in the debugger to skip execution.