New version of lcStackbrowser Released

2016-06-29 Thread Peter Haworth
Version 2.2.3 of lcStackbrowser is now available for download at www.lcsql.com/lcstackbrowser.htm. The release notes are available at https://goo.gl/Xg6gpC lcStackbrowser is a plugin alternative to the Livecode IDE Application Browser, Project Browser, and Tools palette and is compatible with Li

Re: TTS for mobile?

2016-06-29 Thread Monte Goulding
Hi Nicholas This kid of request was my bread and butter up to joining the LC team. I'm (or I should say the team is) still available but via LiveCode Business Services now. There are some existing options available for iOS but we would need to look at Android in more depth. Cheers Monte Sent

Re: Monte Goulding's day off? ; -) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Monte Goulding
Hi Lagi I’m sorry mergJSON isn’t working out for you. It sounds to me like you actually want to represent your numbers as strings in the JSON. In which case mergJSON does have the facility to force things that look like numbers to be strings and things that look like sequentially indexed arrays

Can't Install Standalone -- Entitlements Don't Match

2016-06-29 Thread Sannyasin Brahmanathaswami
I have an adhoc provisioning profile that I use to create standalones. It works for pretty much any stack I create, by any name… it doesn't matter… But I have one stack that goes through the standalone building without difficulty, but when I try to load it on my iPhone with xCode we get the dre

Re: Stopping a script

2016-06-29 Thread Richmond
Victor Hugo had heard nothing from his publishers for an unconscionably long time so he sent them a letter: ? and they replied with this: ! Richmond. Oh, and, Yes, I have been longing to find somewhere I can use the word "unconscionably". On 29.06.2016 21:14, Mike Bonner wrote: What woul

Re: Stopping a script

2016-06-29 Thread Mike Bonner
>>What would a text to speech app do if you asked it to read a sentence comprised of three spaces and a period? A dramatic silence. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage you

Re: Stopping a script

2016-06-29 Thread J. Landman Gay
All handler names are single words. Send and call expect that, as they should, and will see the statement as requesting a handler named "end" with a parameter "mouseUp" . There is no handler named "end", nor can there be, since "end" is a designated terminator - - bodybuilders aside. What woul

Re: Monte Goulding's day off? ; -) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Mark Waddingham
The letter of the JSON spec does make perfect sense and the C library does precisely what it should - it uses the appropriate C types to represent the values which are encoded in the JSON file. Of course, in C, you have to explicitly convert from numbers to strings and as such *always* have to

[OT] Conference ticket for sale (expires on the 1st )

2016-06-29 Thread Ralph DiMola
FYI: This offer expires on the 1st of July. Hey all... Unfortunately Margaret and I will not be able to attend this year's conference. Margaret needs an medical procedure that will require an operation, hospital stay and rehab. Nothing too serious but it must be addressed ASAP. This means that we

Re: Stopping a script

2016-06-29 Thread Mike Bonner
As you discovered, you can. With exit. YOu can exit a handler, exit a repeat, exit to top.. Care should be used with exit to top, depending on what you want to do. If you have a handler that calls another handler and you "exit to top" from the second handler, the first handler also exits. (So,

Re: Stopping a script

2016-06-29 Thread Richmond
Um: "You're trying to execute a terminator." I'll avoid the off-colour remarks about the Styrian bodybuilder and what he did to Tookie Williams. Why can one not 'call' a terminator in Livecode? Rather like one can use *break* in a *switch* statement. Richmond. On 29.06.2016 20:03, J. Landman

Re: Stopping a script

2016-06-29 Thread dunbarx
Richmond. What jacque said. Turn it upside down. Imagine you tried to: send "on mouseUp" to... Craig -Original Message- From: J. Landman Gay To: How to use LiveCode Sent: Wed, Jun 29, 2016 1:03 pm Subject: Re: Stopping a script You can only send or call handler names. The "end

Re: Stopping a script

2016-06-29 Thread J. Landman Gay
You can only send or call handler names. The "end" statement simply designates where the handler ends, much like the period at the end of a sentence. You're trying to execute a terminator. Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://

Re: Monte Goulding's day off? ; -) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Lagi Pittas
Hi darr I think the upshot of this conversation is that Monte used a C library for the JSON that followed the JSON documentation to the letter, whether the letter made practical sense. If this is what Doug Crockford envisaged well there is another God we have to stop worshiping ;-). update Just

Re: Stopping a script

2016-06-29 Thread Klaus major-k
Hi Richmond, > Am 29.06.2016 um 18:30 schrieb Richmond : > > Don't worry: I don't worry, because I know it's YOU, Richmond! :-D > I solved that problem in the easiest, simplest way, that makes me feel very > stupid > indeed because it took me 24 hours to "get it": > > on mouseEnter > exit to

Re: Stopping a script

2016-06-29 Thread Richmond
Don't worry: I solved that problem in the easiest, simplest way, that makes me feel very stupid indeed because it took me 24 hours to "get it": on mouseEnter exit to top end mouseEnter http://forums.livecode.com/viewtopic.php?f=7&t=27546 Richmond. On 29.06.2016 19:23, Klaus major-k wrote:

Re: Stopping a script

2016-06-29 Thread Klaus major-k
Hi Richmond, > Am 29.06.2016 um 18:13 schrieb Richmond : > > Maybe I'm just being a bit simplistic, BUT what is wrong with > having a button containing this script: > > on mouseUp > send "end mouseUp' to button "XYZ" > end mouseUp > > this generates an error message: > > (Handler: can't find

Re: Access mounted volumes on Windows from LC?

2016-06-29 Thread Ben Rubinstein
It wasn't a mistyped path but it was my making a mistake! In my lack of Windows knowledge, I thought that the volume was mounted - but actually that was a server that was 'accessible', but with none of it's volume's mounted. Thanks to everyone for their assistance. Ben On 22/06/2016 17:02

Re: Stopping a script

2016-06-29 Thread Richmond
Maybe I'm just being a bit simplistic, BUT what is wrong with having a button containing this script: on mouseUp send "end mouseUp' to button "XYZ" end mouseUp this generates an error message: (Handler: can't find handler) near "end" ? Richmond. __

Re: Monte Goulding's day off? ; -) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Dar Scott
I'm coming in this late and I'm confused. I made a JSON library a couple years ago (not an external) and I have been encouraged to make it available, but with JSON now being built-in, I didn't bother. Now, there is MergJSON? > On Jun 29, 2016, at 9:06 AM, Mark Waddingham wrote: > > On 201

Re: Monte Goulding's day off? ; -) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Mark Waddingham
On 2016-06-29 16:58, Lagi Pittas wrote: Hi Mark, Thanks for the replies. But your second response I don't understand and the whole point of what I was getting at. "I suppose there could be an option to choose a 'number of decimal places' option passed to the library - however, you will then

Re: Monte Goulding's day off? ; -) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Lagi Pittas
Hi Mark, Thanks for the replies. But your second response I don't understand and the whole point of what I was getting at. "I suppose there could be an option to choose a 'number of decimal places' option passed to the library - however, you will then potentially lose information in your numbers.

Re: nudge Supercard

2016-06-29 Thread Terence Heaford
> On 29 Jun 2016, at 10:32, Richmond wrote: > > Can anyone tell me what purpose the terms "nudge" and "until mouse" as in: > > move card grc "GraphicObjectName" to the points of Cd grc > "GraphicObjectPathName" nudge 2 until mouse > > serve in SuperTalk? > > Richmond. > _

Re: Has anyone got to the end of the BMI Calculator example?

2016-06-29 Thread Graham Samuel
Yes, I did get to the end with a few glitches. See the second part of my bug report, ignoring the last point, which was just due to my ignorance that an unadorned comma between two strings acts like the string & “,” & Anyway the report is at http://quality.livecode.com/show_bug.cgi?id=17830

Re: Has anyone got to the end of the BMI Calculator example?

2016-06-29 Thread j...@omnia.on-rev.com
Does anyone know if this issue has been resolved? On 2016-06-07, at 12:25 PM, j...@omnia.on-rev.com wrote: > Graham... I've been away from RunRev and LiveCode for quite a while and > wanted to reorient myself to the new features. I didn't get to the end > either... Jim > > On 2016-06-07, at 1

Re: Monte Goulding's day off? ;-) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Mark Waddingham
On 2016-06-29 14:21, Mark Waddingham wrote: On 2016-06-29 13:22, Lagi Pittas wrote: Can someone please explain the logic that says that a textual representation of information (CSV, XML a text file even) is translated to a IEEE number for us to round as we see fit? Apologies - you can ignore

Re: Monte Goulding's day off? ; -) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Mike Kerner
and by "problem" I don't mean problem. I mean what makes you think that the library is doing the conversion and not LC? On Wed, Jun 29, 2016 at 8:20 AM, Mike Kerner wrote: > What makes you think the problem is in the library and not in LC, itself? > > On Wed, Jun 29, 2016 at 7:22 AM, Lagi Pitta

Re: Monte Goulding's day off? ;-) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Mark Waddingham
On 2016-06-29 13:22, Lagi Pittas wrote: Can someone please explain the logic that says that a textual representation of information (CSV, XML a text file even) is translated to a IEEE number for us to round as we see fit? The JSON format is quite clear that things that are not in quotes are

Re: Monte Goulding's day off? ; -) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Mike Kerner
What makes you think the problem is in the library and not in LC, itself? On Wed, Jun 29, 2016 at 7:22 AM, Lagi Pittas wrote: > Hi, > > I used the mergJSON in version 8 DP1 today for the first time. > I loaded my CSV file into the program and build my arrays then exported the > array as JSON. >

Monte Goulding's day off? ;-) mergJSON - Documented Bug or Feature?

2016-06-29 Thread Lagi Pittas
Hi, I used the mergJSON in version 8 DP1 today for the first time. I loaded my CSV file into the program and build my arrays then exported the array as JSON. what do I find? prices that were 1.40 showing up as 1.3999, 2.30 showing as 2.2998 etc Now I know this is docume

nudge Supercard

2016-06-29 Thread Richmond
Can anyone tell me what purpose the terms "nudge" and "until mouse" as in: move card grc "GraphicObjectName" to the points of Cd grc "GraphicObjectPathName" nudge 2 until mouse serve in SuperTalk? Richmond. ___ use-livecode mailing list use-livecode