Re: Exit without quitting

2017-01-19 Thread Bob Sneidar via use-livecode
Thanks for the reply all. I will have to create some kind of logging system to see where it is exiting. At least I don't have to refactor 2 years of coding. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to s

Re: Exit without quitting

2017-01-19 Thread pink via use-livecode
I have a program that uses exit to top quite a lot, I compiled it for Windows, Mac, Linux and iOS. I've never had the program quit out on me when it hits the command. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Exit-without-quitting-tp4711748p4711755

Re: Exit without quitting

2017-01-18 Thread AndyP via use-livecode
://2108.co.uk PointandSee is a FREE simple but full featured under cursor colour picker / finder. http://www.pointandsee.co.uk - made with LiveCode -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Exit-without-quitting-tp4711748p4711754.html Sent from the

Re: Exit without quitting

2017-01-18 Thread Mike Kerner via use-livecode
That definitely sounds like some weird situation or bug. Exit to top is my default exit when I hit some bad condition, and I have never had an app crash on me when I did it. On Wed, Jan 18, 2017 at 9:11 PM, Craig Newman via use-livecode < use-livecode@lists.runrev.com> wrote: > I use exit to top

Re: Exit without quitting

2017-01-18 Thread Craig Newman via use-livecode
I use exit to top all the time in a standalone. Just habit, since exit "handler" would do in many cases. But never had it quit. Still in v. 6.7 if that makes a difference. Sent from my iPhone > On Jan 18, 2017, at 6:33 PM, Monte Goulding via use-livecode > wrote: > > >> On 19 Jan 2017, at

Re: Exit without quitting

2017-01-18 Thread Monte Goulding via use-livecode
> On 19 Jan 2017, at 11:20 am, Bob Sneidar via use-livecode > wrote: > > That is to say, it QUITS the app. BTW this "feature" is not documented. If > it's not supposed to quit the app, I can report it as a bug, but I recall > past conversations about this I think. Please report this. It defi

Re: Exit without quitting

2017-01-18 Thread Phil Davis via use-livecode
Hi Bob, What happens in a standalone if you just "exit " instead of "exit to top" ? Of course that could cause problems in some contexts. Phil Davis On 1/18/17 4:20 PM, Bob Sneidar via use-livecode wrote: That is to say, it QUITS the app. BTW this "feature" is not documented. If it's not

Re: Exit without quitting

2017-01-18 Thread Bob Sneidar via use-livecode
That is to say, it QUITS the app. BTW this "feature" is not documented. If it's not supposed to quit the app, I can report it as a bug, but I recall past conversations about this I think. Bob S On Jan 18, 2017, at 16:15 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wro

Exit without quitting

2017-01-18 Thread Bob Sneidar via use-livecode
In the IDE if you exit to top, all script execution stops. In a standalone, it wuits the app. I need a way to stop script execution without quitting the app. Is there an easy way, or will I have to return a value all the way up the script hierarchy to tell the initial handler to sop running? Tha