[Newbies] Re: run to here

2016-06-03 Thread Joseph Alotta
great! thanks! > On Jun 3, 2016, at 10:28 AM, Ron Teitelbaum [via Smalltalk] > wrote: > > > > > > From: Joseph Alotta > Sent: Friday, June 03, 2016 10:54 AM > > > > > Thank you. > > If I am in a loop, and I want to back around, it doesn’t seem to work. > > For example, my loop i

RE: [Newbies] Re: run to here

2016-06-03 Thread Ron Teitelbaum
From: Joseph Alotta Sent: Friday, June 03, 2016 10:54 AM Thank you. If I am in a loop, and I want to back around, it doesn’t seem to work. For example, my loop is at count := 1. I want to look at count := 3. So I go to the top of the loop and click “run to here” and count should

[Newbies] Re: run to here

2016-06-03 Thread Joseph Alotta
Thank you. If I am in a loop, and I want to back around, it doesn’t seem to work. For example, my loop is at count := 1. I want to look at count := 3. So I go to the top of the loop and click “run to here” and count should be 2. Sincerely, Joe. > On Jun 3, 2016, at 9:03 AM, Ron Teitelbau

RE: [Newbies] run to here

2016-06-03 Thread Ron Teitelbaum
Hi Joe, "run to here" only goes forward not back. It works like continue with a future break point (your cursor location). For it to work you need to place the cursor somewhere ahead of where you are and then select "run to here". It should in most cases take you to where you are trying to g

[Newbies] run to here

2016-06-03 Thread Joseph Alotta
Greetings, I am using the debugger and wondering how to use the “run to here” function. I think you have to be in the top of a debugger pane to go down to the spot where the cursor is. But how does it work if you’re many layers into a program. I want to debug the message just before the one th