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.html Sen

Re: AW: Help: Odd menu behavior under LC6.7.11 on OSX

2017-01-19 Thread Curry Kenworthy via use-livecode
That was a very interesting bug, requiring a separate click to correctly display each menu! Fixed now, also I found an easy workaround for anyone using LC 6.7 - 8.1.2. Best wishes, Curry K. ___ use-livecode mailing list use-livecode@lists.runrev.

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

Engine Performance across Versions

2017-01-19 Thread Curry Kenworthy via use-livecode
Howdy, Whenever I have time between client work and addon updates, I will be publishing a series of test results and "Fight Night" videos comparing performance of different LC versions on tasks. My first test involved math and appending text to a variable, and LiveCode 6.7 was the winner! I

Re: Engine Performance across Versions

2017-01-19 Thread Bob Sneidar via use-livecode
If you get around to it try one for Save As Standalone times. If I manually configure included libraries, LC 8.1.2 kicks some royal bahinca over earlier versions. Bob S On Jan 19, 2017, at 07:46 , Curry Kenworthy via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Howdy, Whenever

Re: Engine Performance across Versions

2017-01-19 Thread Curry Kenworthy via use-livecode
Bob: If you get around to it try one for Save As Standalone times. Sounds like a good test of IDE tasks, thanks! Best wishes, Curry K. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Engine Performance across Versions

2017-01-19 Thread Roger Eller via use-livecode
Performance times of a standalone created from each version would be interesting as well. And on each platform... On Thu, Jan 19, 2017 at 11:14 AM, Curry Kenworthy via use-livecode < use-livecode@lists.runrev.com> wrote: > > Bob: > >> If you get around to it try one for Save As Standalone times

Alternative to Caller

2017-01-19 Thread Bob Sneidar via use-livecode
Hi all. I know about the Caller property, which holds the name of the handler that called the current one. I notice however in the script debugger that it has a popup menu of every handler back to the beginning. What I need is a way to discern what that list is, and the line numbers of each sc

Re: Alternative to Caller

2017-01-19 Thread Bob Sneidar via use-livecode
Whoops! Caller is not a property. I guess I don't know. Bob S On Jan 19, 2017, at 08:23 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi all. I know about the Caller property, which holds the name of the handler that called the current one. I notice however in

Re: Alternative to Caller

2017-01-19 Thread Bob Sneidar via use-livecode
Found it! ExecutionContexts! Bob S On Jan 19, 2017, at 08:29 , Bob Sneidar mailto:bobsnei...@iotecdigital.com>> wrote: Whoops! Caller is not a property. I guess I don't know. Bob S On Jan 19, 2017, at 08:23 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi al

Re: Alternative to Caller

2017-01-19 Thread Ali Lloyd via use-livecode
The executionContexts is what you're looking for. On Thu, Jan 19, 2017 at 4:29 PM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Whoops! Caller is not a property. I guess I don't know. > > Bob S > > > On Jan 19, 2017, at 08:23 , Bob Sneidar via use-livecode < > use-livecod

Write to file at end

2017-01-19 Thread Bob Sneidar via use-livecode
Hi all. Given code snippet: open file "Forms Generator 8 Crash Log.txt" for write write formatDate(the date, "sql date") && formatTime(the long time, "sql time") & cr \ to file "Forms Generator 8 Crash Log.txt" at end write tContexts & cr to file "Forms Generator 8 Crash Log.txt" at end close f

Re: Write to file at end

2017-01-19 Thread Bob Sneidar via use-livecode
Hmmm... I inserted read from file "Forms Generator 8 Crash Log.txt" until EOF before the writes, then removed "at end" from the write commands. IT STILL overwrites the entire file! It looks like the open file command is wiping the file before any writes happen! Is this normal?? Bob S >

Re: Write to file at end

2017-01-19 Thread Thierry Douez via use-livecode
2017-01-19 18:53 GMT+01:00 Bob Sneidar via use-livecode < use-livecode@lists.runrev.com>: > Hi all. > > Given code snippet: > > open file "Forms Generator 8 Crash Log.txt" for write > ​ open file "Forms Generator 8 Crash Log.txt" for ​append HTH Thierry​ ---

Re: Write to file at end

2017-01-19 Thread Bob Sneidar via use-livecode
CraP! Never mind. Open file for UPDATE I'm such a moron. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/lis

Re: Write to file at end

2017-01-19 Thread Bob Sneidar via use-livecode
Oh append ok. Bob S > On Jan 19, 2017, at 10:03 , Bob Sneidar wrote: > > CraP! Never mind. Open file for UPDATE > > I'm such a moron. > > Bob S > > ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe

WS.Reputation.1 False Positive?

2017-01-19 Thread Graham Samuel via use-livecode
I’ve prepared and code-signed a Windows installer for my LiveCode app. When I download it via Google Chrome, the browser tries to discard it, then Norton tries to delete it. When I get over these humps (let’s hope other folks downloading will be prepared to do this!), Norton reports that the ins

Re: What has changed in MacOS 10.12 in handling code pages?

2017-01-19 Thread J. Landman Gay via use-livecode
On 1/17/17 11:24 PM, Kay C Lan via use-livecode wrote: In LC 6.6.5 on OS X 10.11.6 I created a new stack, dragged a field onto it (i.e. no font specified for the field) and then in the msg box: put the effective textFont of field 1 --the result is 'Lucidia Grande' In LC 9.0.0 dp4 on the same ma

Re: WS.Reputation.1 False Positive?

2017-01-19 Thread Matthias Rebbe via use-livecode
Dear Graham, this is a known behavior of Symantec´s Norton Antivirus. See https://community.norton.com/en/forums/norton-security-thinks-my-inno-setup-files-are-threat and https://disqus.com/home/discu

Re: WS.Reputation.1 False Positive?

2017-01-19 Thread Bob Sneidar via use-livecode
I may have mentioned that many reputable vendors and developers do NOT sign their apps just because of this very thing. I suppose one day ew will wake up and discover that an OS will not allow you to run an app unless it's signed. That will be a black day. Bob S On Jan 19, 2017, at 10:36 , Gr

Re: Write to file at end

2017-01-19 Thread Jim Lambert via use-livecode
Bob, 'for UPDATE’ works as well for your case as long as you write ‘at END' Jim Lambert ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://list

Re : write to file at end

2017-01-19 Thread Francis Nugent Dixon via use-livecode
Hi Bob, I think that you are forgetting at least two parameters in the open file command : open flle ABC for update (existing file you want to READ and then WRITE to) (I never used this form ...) open file ABC for append (existing fille you want to "ADD" to) ("just the job !") I hope that this

Re: WS.Reputation.1 False Positive?

2017-01-19 Thread Mark Wieder via use-livecode
On 01/19/2017 10:36 AM, Graham Samuel via use-livecode wrote: So it looks like I can’t get round this - has anyone any suggestions? NAV has a well-deserved reputation. -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecod

Re: WS.Reputation.1 False Positive?

2017-01-19 Thread Graham Samuel via use-livecode
Thanks Mark but sorry, too laconic for me (and Google). What's NAV and what kind of help can it offer potential downloaders? Probably a very dumb question. Graham Sent from my iPad > On 20 Jan 2017, at 02:53, Mark Wieder via use-livecode > wrote: > >> On 01/19/2017 10:36 AM, Graham Samuel vi

Re: WS.Reputation.1 False Positive?

2017-01-19 Thread William Prothero via use-livecode
Graham, I think he was referring to Nortan Anti Virus. Anyway, I totally feel your pain. I have decided to NOT sign my Windows app and just see what happens. It sounds like signing hasn’t solved your problems. Good luck, Bill > On Jan 19, 2017, at 6:04 PM, Graham Samuel via use-livecode > wrot

Re: WS.Reputation.1 False Positive?

2017-01-19 Thread Graham Samuel via use-livecode
OK I was being dumb as I suspected. And I wasn't ready for irony, maybe because it's four in the morning here. Must go to bed. Graham Sent from my iPad > On 20 Jan 2017, at 03:10, William Prothero via use-livecode > wrote: > > Graham, > I think he was referring to Nortan Anti Virus. > Anywa