Re: Navigator 6.4 alpha 1 is out

2018-09-24 Thread Geoff Canyon via use-livecode
I forgot -- I also added in-line editing of properties identified as single-line in Navigator's property editor. Meaning: 1. If the property is "colors" (this would only be displayed if you add colors to the control's properties in Navigator's preferences dialog) then Navigator will immediately

Navigator 6.4 alpha 1 is out

2018-09-24 Thread Geoff Canyon via use-livecode
As usual, you can get Navigator here . Or grab it from GitHub . Phew! I discovered a brutal bug in Navigator while coding this update. Everyone should either update, or avoid the "Save All" and

Re: Script-only-stack file issue 9.0.1

2018-09-24 Thread Mike Kerner via use-livecode
If you're on windows, there is no case-sensitivity, so when using git, for example, there are issues with "file" and "FILE" because they're the same to windows. Then there are the names thou shalt never use (con, prn, aux, nul, com1, com2, com3, com4, com5, com6, com7, com8, com9, com0, lpt1,

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread Mike Kerner via use-livecode
I'm loading a pdf, not a web page into the widget. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Script Editor Unusable on Windows

2018-09-24 Thread Curry Kenworthy via use-livecode
So having used it on two laptops, I conclude that LiveCode 901 Script Editor is essentially broken on many Windows machines. It's now unusable for real coding (with the built-in Script Editor) in my experience. Not a very acceptable situation! Bug report:

Navigator 6.4 alpha 1 is out

2018-09-24 Thread Geoff Canyon via use-livecode
As usual, you can get Navigator here . Or grab it from GitHub . Phew! I discovered a brutal bug in Navigator while coding this update. Everyone should either update, or avoid the "Save All" and

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread hh via use-livecode
> BR wrote: > Related use case: some web pages download a "ton" of > javascript at start up. > I can't find a way to set a "spinner/I-am-downloading" > on the screen, until we get some content appearing on > the page. For your own pages you could use pace

Re: Intersect Function

2018-09-24 Thread dunbarxx via use-livecode
I believe the OP was talking about two arbitrary lines, likely graphic objects, that intersect each other. Not rectangles with points within them, or two rectangles. I think the only way to do this is as per the first four posts in this thread. Craig -- Sent from:

Re: Intersect Function

2018-09-24 Thread hh via use-livecode
> Jerry J. wrote: > I think he mentioned curved “lines”. That is a > whole other kettle of fish. The OP speaks of "functions for the lines", so either he means "math lines" or, as you say, continuous curves, say polynomials. Yes, this isn't solvable for polynomials of higher degree by formulas

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread Bob Sneidar via use-livecode
Correction: I set the systemWindow property to true. Bob S > On Sep 24, 2018, at 14:25 , Bob Sneidar via use-livecode > wrote: > > Unless something changed, the built in spinner uses the single threaded > engine, so any processing done by the engine will halt the spinner, thereby > making

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread Bob Sneidar via use-livecode
Unless something changed, the built in spinner uses the single threaded engine, so any processing done by the engine will halt the spinner, thereby making the spinner just the other side of worthless for anything but non-blocking operations. What I did was I wrote a standalone that could

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread Richmond Mathewson via use-livecode
On my silly phone now as in bed. Wonder if you couldn't use a splash screen substack with a spinner? Will try this tomorrow, although am uncertain re substacks in the HTML5 standalone. On Mon, Sep 24, 2018, 11:44 PM Sannyasin Brahmanathaswami via use-livecode < use-livecode@lists.runrev.com>

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread Sannyasin Brahmanathaswami via use-livecode
On 9/24/18 5:45 AM, Mike Kerner via use-livecode wrote: > Thanks Monte. Fix it anyway. > Thanks for the idea, Tom, no joy. Related use case: some web pages download a "ton" of javascript at start up. I can't find a way to set a "spinner/I-am-downloading" on the screen, until we get some content

Re: Intersect Function

2018-09-24 Thread Richmond Mathewson via use-livecode
It is, and INTERSECT with them is just a distraction. Probably time (shock, horror) to do some Mathematics. On Mon, Sep 24, 2018, 11:36 PM Jerry Jensen via use-livecode < use-livecode@lists.runrev.com> wrote: > I think he mentioned curved “lines”. That is a whole other kettle of fish. > .Jerry >

Re: Intersect Function

2018-09-24 Thread Richmond Mathewson via use-livecode
One could have a line consisting of a graphic object (rectangle) with a width of one. ? On Mon, Sep 24, 2018, 10:17 PM hh via use-livecode < use-livecode@lists.runrev.com> wrote: > @Richmond. > > You (and the author) overlooked that we have, since 1.0, > is within . > >

Re: Intersect Function

2018-09-24 Thread Jerry Jensen via use-livecode
I think he mentioned curved “lines”. That is a whole other kettle of fish. .Jerry > On Sep 24, 2018, at 9:23 AM, hh via use-livecode > wrote: > > It is not this complicated. Only if you are looking for > the intersection of two line *segments* you have do a > few more checks.

Re: Intersect Function

2018-09-24 Thread hh via use-livecode
@Richmond. You (and the author) overlooked that we have, since 1.0, is within . ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Script-only-stack file issue 9.0.1

2018-09-24 Thread doc hawk via use-livecode
On Mon, Sep 24, 2018 at 8:26 AM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > I know you know, but it bears repeating, you can never go wrong following > that old IT adage, no special characters in a filename, no spaces or caps > in a SQL column name. In fact I don't

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread hh via use-livecode
> Mike K. wrote: > ... I have no idea what document.activeElement.blur() is supposed to do ... The HTMLElement.blur() method removes keyboard focus from the current element. Is Google or similar defunct with you? ___ use-livecode mailing list

Re: Intersect Function

2018-09-24 Thread Richmond Mathewson via use-livecode
I found THIS in the User contributed notes in the 7.1.4 documentation from 2009: "The intersect() command takes two objects as inputs. In some situations, it may be useful to find the intersect of a point and a rectangle. The custom function below may be used in those cases: function

Re: Intersect Function

2018-09-24 Thread hh via use-livecode
It is not this complicated. Only if you are looking for the intersection of two line *segments* you have do a few more checks. A LC object "line" is a line segment given by two pairs of points (x,y). The OP probably mean with line the math object line that is given by and passing through these

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread Mike Kerner via use-livecode
Thanks Monte. Fix it anyway. Thanks for the idea, Tom, no joy. On Sun, Sep 23, 2018 at 11:26 PM Tom Glod via use-livecode < use-livecode@lists.runrev.com> wrote: > Just a hunch maybe you can quickly toggle visibility of the > widget..after everything is loaded. maybe that will be enough

Re: Script-only-stack file issue 9.0.1

2018-09-24 Thread Mike Kerner via use-livecode
Unfortunately, the tao of lc isn't documented everywhere, and things that work on one os don't work on another, see "All the filenames that work on every platform but not on Windows". There seems to be another issue with single-quotes in paths, even though LC specifically substitutes them into

Re: Script Editor Slow on Windows (any Macs?)

2018-09-24 Thread Bob Sneidar via use-livecode
Well, I have noticed a regression of the old Forgotten Breakpoint bug, where a soft breakpoint is set (red dot) and after editing and saving a script, the red dot remains but the engine does not break. Turning it off and on again fixes it until the next save. Others have reported the script

Re: Mobile write to text file woes

2018-09-24 Thread Bob Sneidar via use-livecode
That was so good I put it up on facebook. :-) Bob S > On Sep 22, 2018, at 14:10 , J. Landman Gay via use-livecode > wrote: > >> I have a little app >> It works and makes me smile >> It reads text data in a snap >> But won't write with "Can't open file" >> The path is set the same for both >>

Re: Script-only-stack file issue 9.0.1

2018-09-24 Thread Bob Sneidar via use-livecode
I know you know, but it bears repeating, you can never go wrong following that old IT adage, no special characters in a filename, no spaces or caps in a SQL column name. In fact I don't even like spaces in a filename because if at some point I want to share it over FTP, and the FTP server has a

Re: Intersect Function

2018-09-24 Thread dunbarxx via use-livecode
Well and good. I repeat that in a computer screen, with fixed pixel coordinates, you will likely need just a bit of rounding forgiveness when doing the math. You need to write a bit of code, in other words, that will accept close matches between the string of pixels and the calculated "points"

Re: Intersect Function

2018-09-24 Thread Beat Cornaz via use-livecode
Thanks Craig, I was already afraid of that. Yes, I guess I could figure out the math. I will have the 2 functions of the lines and if I set them equal, I could solve the intersection point of the two. Your way is also valid, but as I need to determine many intersection points, the script might get

Re: App Dead on iOS 12

2018-09-24 Thread panagiotis merakos via use-livecode
Hi all, If you folks still see crashes on startup on iOS 12 and you are using an Apple Enterprise Cert/ Provisioning Profile, then this is the culprit. Regenerating the certificate/provisioning profile seems to fix the problem: https://quality.livecode.com/show_bug.cgi?id=21597 Best, Panos -

[ANN] This Week in LiveCode 147

2018-09-24 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #147 here: https://goo.gl/KkeEZG This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: Intersect Function

2018-09-24 Thread dunbarxx via use-livecode
Hi. No. But you can determine the points of a line graphic, and calculate all the pixels it "contains" from its starting point to its ending point. Do the same for a second line. Then you can determine the point that seems to be common to both lines. I say seems, because when you do the math,

Intersect Function

2018-09-24 Thread Beat Cornaz via use-livecode
Is there a function to determine the intersection point (x,y) of two lines? The intersect function in LC only gives me a true or false, and I need the exact location (x,y) of the intersection. Thanks, Beat ___ use-livecode mailing list