Re: Before and after Livecode

2015-07-18 Thread Richmond
On 18/07/15 09:47, David Bovill wrote: Has anyone been using the "before" and "after" handlers in Livecode? If so what for? I'm very impressed with them. Together with chain-able behaviors I this we have some great opportunities for code collaboration without the usual name space collisions you

Re: Totally Loopy

2015-07-18 Thread Richmond
On 18/07/15 09:48, David Bovill wrote: Now that make no sense :) It does seem odd that that would be better than SET THE VIS or HIDE / SHOW. Richmond. On 17 July 2015 at 19:17, Roger Eller wrote: I have also found that toggling the blendLevel from 100 to 0 is very quick and efficient, co

Re: Before and after Livecode

2015-07-18 Thread Dave Kilroy
Richmond I think David is probably referring to the 'before' and 'after' control structures - as in: "before mouseUp answer "before mouse up received" end resizeStack" David, no sorry I've never used them (and yes they are interesting...) - "The difference between genius and stupidity i

Re: Before and after Livecode

2015-07-18 Thread Richmond
On 18/07/15 12:24, Dave Kilroy wrote: Richmond I think David is probably referring to the 'before' and 'after' control structures - as in: "before mouseUp answer "before mouse up received" end resizeStack" David, no sorry I've never used them (and yes they are interesting...) I'm sure you

Re: OT: No More Servers

2015-07-18 Thread Richard Gaskin
David Bovill wrote: > By the way I think I'm not paying enough attention to the Forum's > - there is an API / Livecode stack for interfacing with information > there? I just use a Web browser, though I also have a process that grabs and distills the RSS feed periodically throughout the day. F

Re: OT: No More Servers

2015-07-18 Thread Peter Haworth
I get a daily digest of the forum postings by email. It works quite well with a one line summary of each post at the top which you can click on to get to the post further down the email. The email also has links to the post on the forum itself. The only downside I've found is that if there are a

Re: Totally Loopy

2015-07-18 Thread Richard Gaskin
Richmond wrote: >> On 17 July 2015 at 19:17, Roger Eller wrote: >> >>> I have also found that toggling the blendLevel from 100 to 0 is >>> very quick and efficient, compared to hide/show. >> > On 18/07/15 09:48, David Bovill wrote: >> Now that make no sense :) > > It does seem odd that that would

Re: Improving "Bug Reports" feature of standalones

2015-07-18 Thread Mark Wieder
On 07/17/2015 08:23 AM, tbodine wrote: I use the built-in "Bug Reports" feature of the standalone builder, which provides basic info. via email when a user hits an error. Problem is these reports omit basic, key details, such as the platform and my codebase version number. And users never includ

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-07-18 Thread William Prothero
David: Thank you for your interest. I have your @viral.academy email from your posting. If you’d like another, please contact me offlist at proth...@earthednet.org . My biggest problem right now is figuring out why two foreign stud

Oh ! So completely OT ......( All about CPU allocation !)

2015-07-18 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, I was brought up in the era of IBM 360/370 main-Frame computers, where the Operating Systems used a dynamic CPU allocation, based upon the the CPU requirements. For the novice, in this era, it seemed strange to allocate CPU time in an “apparent” reverse order of logic,

Re: Oh ! So completely OT ......( All about CPU allocation !)

2015-07-18 Thread Colin Holgate
In the Unix world you would be talking about renice. It works for Mac OS too: http://www.andrewhazelden.com/blog/2011/03/using-renice-to-control-cpu-usage/ ___ use-livecod

Re: Filing Bugs is so hard - bugzilla is buggy

2015-07-18 Thread Mark Wieder
On 07/17/2015 03:19 PM, Richard Gaskin wrote: Bugzilla is a current project, used by thousands of sites. Sad but true. Are there limitations to what can be attached to an LC bug report? I've been trying to attach valgrind output to bug 15617 investigating why LC7 is so slow on linux, and bug

Re: Filing Bugs is so hard - bugzilla is buggy

2015-07-18 Thread Richard Gaskin
Mark Wieder wrote: > On 07/17/2015 03:19 PM, Richard Gaskin wrote: > >> Bugzilla is a current project, used by thousands of sites. > > Sad but true. Some pretty nice projects on this list, including KDE and LibreOffice: https://www.bugzilla.org/installation-list/ (And yes, I recently submitted

Re: Before and after Livecode

2015-07-18 Thread David Bovill
An example of how I used them to solve a problem that's bugged me for years - logging / debugging things like servers. You can write a server in a tiny bit of code, but to see what is going on / wrong you want to log things at every step - or at least the important bits - and your code ends up with

Re: Filing Bugs is so hard - bugzilla is buggy

2015-07-18 Thread Peter TB Brett
On 2015-07-18 19:48, Mark Wieder wrote: On 07/17/2015 03:19 PM, Richard Gaskin wrote: Bugzilla is a current project, used by thousands of sites. Sad but true. Are there limitations to what can be attached to an LC bug report? I've been trying to attach valgrind output to bug 15617 investigat

Re: Before and after Livecode

2015-07-18 Thread Robert Brenstein
On 18.07.2015 at 20:28 Uhr +0100 David Bovill apparently wrote: Now with before / after handlers - no logging code in the server - it's so clean and simple it is gorgeous. When I want logging I add the behavior which includes all the efore / after handlers that havve acess to all the data and ju

Re: Before and after Livecode

2015-07-18 Thread Mark Wieder
On 07/18/2015 12:28 PM, David Bovill wrote: Now with before / after handlers - no logging code in the server - it's so clean and simple it is gorgeous. When I want logging I add the behavior which includes all the efore / after handlers that havve acess to all the data and just do the logging. W