Re: Breakpoint troubles

2008-09-28 Thread J. Landman Gay
Kee Nethery wrote: I run into this quite frequently. The workaround for me is to manually put a breakpoint (the dot in the debugger) on a line after the thing that causes the runaway. When it emerges from the function that causes it to forget that it is in debug, it hits the one I manually adde

Re: Breakpoint troubles

2008-09-28 Thread Mark Wieder
Len- Saturday, September 27, 2008, 10:21:44 PM, you wrote: > Is there some issue with breakpoints and blocking handlers that I'm not > aware of? FWIW, the GLX2 debugger handles this without a problem. I believe the issue with the IDE's debugger is that the URL call is in a system stack, so the d

Re: Breakpoint troubles

2008-09-28 Thread Mark Schonewille
Hi Kee, This will probably not solve the problem, because while in debug mode, Rev thinks that the URL has been downloaded immediately. (Again, I'm not 100% sure of this). -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http:/

Re: Breakpoint troubles

2008-09-28 Thread Kee Nethery
I run into this quite frequently. The workaround for me is to manually put a breakpoint (the dot in the debugger) on a line after the thing that causes the runaway. When it emerges from the function that causes it to forget that it is in debug, it hits the one I manually added and goes back

Re: Breakpoint troubles

2008-09-28 Thread Mark Schonewille
Hi Len, What you describe may be caused by this bug: Although I haven't investigated this in detail, I can imagine that the debugger causes a callback to be sent internally before the URL finishes loading, which means that Rev will n

RE: Breakpoint troubles

2008-09-28 Thread Len Morgan
Hi Len, I tried the following: on mouseUp breakpoint put URL "http://economy-x-talk.com"; into tTextOfURL put "I made it" end mouseUp which worked fine. I could step line by line till the end. Is there anything else you did or is your script incomplete

Re: Breakpoint troubles

2008-09-28 Thread Mark Schonewille
Hi Len, I tried the following: on mouseUp breakpoint put URL "http://economy-x-talk.com"; into tTextOfURL put "I made it" end mouseUp which worked fine. I could step line by line till the end. Is there anything else you did or is your script incomplete? Is it possible that your pro

Breakpoint troubles

2008-09-27 Thread Len Morgan
I'm trying to debug the following: ... breakpoint put URL myURL into tTextOfURL put "I made it" It seems to be stopping ok at the breakpoint but when I execute the next line (the put URL...), it skips to end of the handler. Actually, to the next line of the handler that called this one. Is t