Re: LC Garbage Collection?

2019-09-26 Thread Dar Scott Consulting via use-livecode
I don't think that is large. If you are processing data the same size and somehow leaving the previous data around, that might build up. That might build up in queues and stacks, in a message storm and in appended data. But, I am guessing that that is not likely. > On Sep 26, 2019, at 1:54 PM,

Re: Does anyone know...

2019-09-26 Thread Monte Goulding via use-livecode
Perhaps create a bug report with the document attached etc. > On 26 Sep 2019, at 11:15 pm, Paul Dupuis via use-livecode > wrote: > > Thank you Monte! > > I ask because a text document we're working with word counting and word > searching was returning odd results for a document in Georgian, b

Re: LC Garbage Collection?

2019-09-26 Thread Richard Gaskin via use-livecode
Tom Glod wrote: > Hi folks, I'm wondering if anyone can help me to understand > Livecode's garbage collection. I am developing an application that > is intended to stay in memory and so I must watch memory consumption > carefully. I've had some instances where memory ran way out of > control...

Re: Hactoberfest is coming...

2019-09-26 Thread Pi Digital via use-livecode
Was that response email for signing up to GitHub perhaps. The Hacktoberfest site says everywhere I look: You can sign up anytime between October 1 and October 31. There are no links I can find to sign up to the fest yet, just a few links to github which will ask you to sign in/up when it loads.

Re: Hactoberfest is coming...

2019-09-26 Thread Mike Kerner via use-livecode
are you sure? i registered 10 minutes before i posted that email and received a confirmation, so did i post the wrong link? On Wed, Sep 25, 2019 at 5:06 PM Pi Digital via use-livecode < use-livecode@lists.runrev.com> wrote: > Correction. You can only begin registering from 1st October according

Re: help with mobileSetKeyboardType

2019-09-26 Thread Dan Friedman via use-livecode
I too was not able to get this to work: mobileControlSet “input”, “keyboardType”, “search” But, I see that "search" is not listed in the docs as an acceptable keyboardType value. When I tried any of the listed values, it did work. Thanks for the assist Devin! -Dan On 9/26/19, 12:53 PM, "us

Re: LC Garbage Collection?

2019-09-26 Thread Tom Glod via use-livecode
2.5 mb is not big at all. please remember to test with 9.05 when worried about leaks. On Thu, Sep 26, 2019 at 3:55 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > On 9/24/19 2:39 PM, Dar Scott Consulting via use-livecode wrote: > > Sources of memory leaks are LC,

Re: LC Garbage Collection?

2019-09-26 Thread J. Landman Gay via use-livecode
On 9/24/19 2:39 PM, Dar Scott Consulting via use-livecode wrote: Sources of memory leaks are LC, LC scripts, OS, libraries, LCB and (I suppose) compilers. I don't think we can assume the problem is not in the user script. I have seen script memory leaks like these: 1. Leaving large data in scri

Re: help with mobileSetKeyboardType

2019-09-26 Thread J. Landman Gay via use-livecode
FWIW, I couldn't get this to work at all: mobileControlSet “input”, “keyboardType”, “search” The only thing that worked for me was mobileSetKeyboardType, with the caveat that it had to be issued after the native control was created. And the glitch there is that it doesn't take effect until the

Re: help with mobileSetKeyboardType

2019-09-26 Thread Devin Asay via use-livecode
Dan, I believe it’s because setting keyboard type with a mobile native control is done by setting a property with mobileControlSet: mobileControlCreate "input","_editingField” mobileControlSet “input”, “keyboardType”, “number” The mobileSetKeyboardType command works in all other circumstances,

help with mobileSetKeyboardType

2019-09-26 Thread Dan Friedman via use-livecode
I am having some trouble with mobileSetKeyboardType. Can anyone tell me why mobileSetKeyboardType works with this: mobileSetKeyboardType "number" ask "Enter a number" But it doesn’t work with this: mobileSetKeyboardType "number" mobileControlCreate "input","_editingField" mobileControlSet "_ed

Re: Does anyone know...

2019-09-26 Thread Paul Dupuis via use-livecode
Thank you Monte! I ask because a text document we're working with word counting and word searching was returning odd results for a document in Georgian, but all other tested other languages (far short of all languages) are correct. I saw that Unicode 11.0 made some changes to Georgian. It wo

RE: In-App Purchase Subscription

2019-09-26 Thread Ralph DiMola via use-livecode
Lagi, You can test purchasing by creating test sandbox iTunes user on iTunesConnect. Then login in to it on your test device. You can then purchase without cost. The only test you can't do is a dispute cancelation. That you need the low tier test on a live iTunes account to fully test. Ralph DiMo

Re: In-App Purchase Subscription

2019-09-26 Thread Lagi Pittas via use-livecode
Hi Heather, Todd is Au Fait with all that, it wasn't purchases that were the problem it was subscriptions , Todd wrapped that up it up easily on the Google Play Store.. In the end I Googled(Duck Duck Go'd actually) and found a MUCH easier way by enabling server to server notifications. So with a

Re: In-App Purchase Subscription

2019-09-26 Thread Heather Laine via use-livecode
In case its helpful: http://lessons.livecode.com/m/4069/l/186807-how-do-i-implement-in-app-purchases-in-livecode-apple-appstore Regards, Heather > On 25 Sep 2019, at 17:28, Todd Fabach