Re: Vector Images and the SVGL stack

2015-11-10 Thread Richmond
On 10/11/15 18:16, Bob Sneidar wrote: That just about broke my brain in Algebra. I contended that an infinitely small point was nothing at all, therefore an infinite number of points was also nothing at all. So why were we talking about it as though it were something tangible?? :-) Bob S

[OT] Purchased the book? Make sure to reply!

2015-11-10 Thread Mark Schonewille
Hi, Yesterday and today, we have asked everyone who has purchased the book "Programing LiveCode for the Real Beginner" to confirm his/her shipping address. Today, we sent an extra e-mail to all people who bought the book last night. Please make sure to confirm your address right now. If you

Re: styling text within an LC script

2015-11-10 Thread Geoff Canyon
FYI, adding the formatting commands in a variable and then setting the HTMLtext will be *much* faster than formatting by setting styles in a field. On Tue, Nov 10, 2015 at 7:39 AM, Paul Dupuis wrote: > Text in a variable (i.e "verse_line") can not be styled, at least in

Re: styling text within an LC script

2015-11-10 Thread Sri
niconiko wrote > Can an LC script italicize the Italian while leaving the English as is, so > that the resulting multi-styled combined text can be copy-pasted from an > LC > text-object to another doc? Yes. Drag a table field onto the card and name it "Table1" Create a button called "Test". Put

Re: Vector Images and the SVGL stack

2015-11-10 Thread Richard Gaskin
-hh wrote: >> R.G. wrote: >> >> The difference between a true Bezier object and emulating Beziers >> with polygons is resolution. > > I see it like this, a little bit different. > > A "true" Bezier object is a mathematical model, for thinking and > abstract computations, but not realizable in

Re: Vector Images and the SVGL stack

2015-11-10 Thread Bob Sneidar
That just about broke my brain in Algebra. I contended that an infinitely small point was nothing at all, therefore an infinite number of points was also nothing at all. So why were we talking about it as though it were something tangible?? :-) Bob S On Nov 9, 2015, at 16:56 , Richard Gaskin

Re: Vector Images and the SVGL stack

2015-11-10 Thread [-hh]
> B.S. wrote > That just about broke my brain in Algebra. I contended that an infinitely > small point was nothing at all, therefore an infinite number of points was > also nothing at all. So why were we talking about it as though it were > something tangible?? :) Richard certainly believes in

[OT] MacHeist

2015-11-10 Thread Peter Haworth
Here's their latest bundle: https://macheist.com/ You can name your won price but you have to spend at least $15 to the more powerful apps including Supercard Suite Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin

Re: Area of Irregular Polygon

2015-11-10 Thread [-hh]
In the thread ("Area of irregular Polygon") I've seen a very fast technique. I tested this technique and found it extremely fast. Thus I would like to summarize and contribute also the centroid formulas, for our collections. Look at non-selfintersecting (simple) polygons. The centroid of such a

can't build, won't build !@?

2015-11-10 Thread John Dixon
Using LC 7.1 and Xcode 6.4, I have no problem getting a stack to run in the simulator or on a device... Using LC 7.1.1(RC3) or LC 8,0 (dp 8) and Xcode 7.1, I get error dialogs that are telling me 'Unable to build for simulation' as files cannot be copied... If I return to LC 7.1 and Xcode

Re: can't build, won't build !@?

2015-11-10 Thread Neil Roger
Hi John, Had a quick go at trying to reproduce the issue but no success so far. If possible could you submit a quick bug report, with sample stack, and we'll happily look into this further. Kind regards, Neil LiveCode Technical Support Lead n...@livecode.com

Re: Release 6.7.8 RC 3 / 7.1.1 RC 3

2015-11-10 Thread Richmond
6.7.8 RC 3 All a bit lumpy on 64 bit Linux I'm afraid: http://forums.livecode.com/viewtopic.php?f=20=25828=134261#p134261 Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Formatting a number with two or more decimal points

2015-11-10 Thread Alejandro Tejada
Hi All, Recently, while updating Ian's SVGL to import some SVG archives that you could download from OpenClipart.org I found an error processing this number: 80.26.12 This looks like a number with two decimal points but it's a shorthand for two numbers that some SVG editors use to save space by

Re: Area of Irregular Polygon

2015-11-10 Thread Alex Tweedly
For the area calculation, it is actually marginally faster without the "delete line 1 of p" - i.e. as Geoff Canyon suggested. The first time through the loop is guaranteed to calculate "0" - so no change to the result, and a cost of a very few microseconds. But doing that "delete line 1 of p"

RE: can't build, won't build !@?

2015-11-10 Thread John Dixon
Done...:-) # 16389 > Date: Tue, 10 Nov 2015 10:06:11 + > From: n...@livecode.com > To: use-livecode@lists.runrev.com > Subject: Re: can't build, won't build !@? > > Hi John, > > Had a quick go at trying to reproduce the issue but no success so far. > > If possible could you submit a quick

Re: can't build, won't build !@?

2015-11-10 Thread Neil Roger
Hi John, I can confirm this one :) Bit of a funky one as using your assets on a fresh stack works without issue so seems to point to something stack specific. We'll keep you posted via the bug report. Kind Regards, Neil LiveCode Technical Support Lead n...@livecode.com

Standalone Internet Access Errors

2015-11-10 Thread Dan Friedman
I have a standalone app that users download, unzip, and run. This works fine. However, from time to time I get a call from a customer, typically on a windows computer, that the app is unable to reach the internet. My standalone is getting timeout errors, and "Host address not found"

Calculating the sum of a *lot* of primes

2015-11-10 Thread Geoff Canyon
I'm playing with a challenge to calculate the sum of the primes less than 3,000,000,000 So far I have this, which gets the job done for the primes up to about a billion, but then dies (the whole app) without even a dialog. It's also not very fast. It would probably take an hour or two to finish.

Re: styling text within an LC script

2015-11-10 Thread Paul Dupuis
Text in a variable (i.e "verse_line") can not be styled, at least in the same what you style text in a field (i.e. setting the textStyle property) To style text in a script, you either need to create the styling in a variable as htmlText or in an array as the styledText. I think for what you want

Re: MouseMove message interrupted when I change cards

2015-11-10 Thread Matt Maier
Dude, the mouseMove messages suck. Like it always sends a mouseMove after mouseDown, whether or not the mouse moved. And there are other things that either block mouseMove from being sent, or send it only to the original control, or some other exception. If you try to do anything unusual based on

Re: Formatting a number with two or more decimal points

2015-11-10 Thread Matt Maier
This works with the two cases you described. I've heard that "repeat while" isn't the fastest option, but it sounded like 6 repeats would be an extreme case, so it probably doesn't matter. on testingTesting -- 10.26.12.47.38.52.71 -- 10.26 0.12 0.47 0.38 0.52 0.71 -- put "80.26.12"

MouseMove message interrupted when I change cards

2015-11-10 Thread David Epstein
Among the controls in a group with background behavior I have a “quick browse” control — a polygon graphic whose many rectangular parts represent cards in the stack. I handle “mouseEnter” and “mouseMove”, and use the mouseH to calculate which card to go to. I find that the “mouseMove” message

Re: MouseMove message interrupted when I change cards

2015-11-10 Thread Scott Rossi
Hi David: Try the following in your message box. Is this what you're trying to do? go url "http://tactilemedia.com/download/graphic_nav.livecode; Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 11/10/15, 7:38 PM, "use-livecode on behalf of David Epstein"