Help with iOS app submission.

2019-09-25 Thread Mike for GDC via use-livecode
I would like to get some help (consulting) to help me with the final stage of uploading an app to the app store. Can pay your going rate for help. Please contact me directly if interested. Thanks. Mike ___ use-livecode mailing list use-livecode

Re: Does anyone know...

2019-09-25 Thread Monte Goulding via use-livecode
We currently use ICU 58.2 which looks to be Unicode 9.0 + some extras http://site.icu-project.org/download/58 > On 26 Sep 2019, at 7:50 am, Paul Dupuis via use-livecode > wrote: > > ... how often the Unicode engine/rules are updated in LiveCode? For e

Does anyone know...

2019-09-25 Thread Paul Dupuis via use-livecode
... how often the Unicode engine/rules are updated in LiveCode? For example, the standard is at 12.1 (released May 2019 to add 1 character) and the last major release was 12.0 (released March 2019). Does anyone know what version the Unicode library in LC905rc1 uses? Perhaps a  "the unicodeVers

Re: Stacks and Sub Stacks

2019-09-25 Thread Bob Sneidar via use-livecode
I like using SubStacks because I only need to open one file to get everything related to a project. Some people don't like using them because there are certain things that happen that you wouldn't expect. For instance, any preOpenStack, openStack, suspendStack, resumeStack etc. messages generate

Re: Hactoberfest is coming...

2019-09-25 Thread Pi Digital via use-livecode
Correction. You can only begin registering from 1st October according to the site. I’m going to be submitting a bunch of fixes and updates for HTML5 deployment to get it usable professionally again. But I have to weave this around my (barely) paid work developing a web app using the broken ver

Re: Hactoberfest is coming...

2019-09-25 Thread Mike Kerner via use-livecode
The Hacktoberfest registration is now open: https://hacktoberfest.digitalocean.com Get registered and then between October 1, and 31, make 3 pull requests to projects housed on GitHub, and ge

Re: Stacks and Sub Stacks

2019-09-25 Thread dunbarx--- via use-livecode
Should, of course, be: on mouseUp   answer "Sub" && random(99)   -- pass mouseUp end mouseUp I really, really do not like the use-list. Craig -Original Message- From: dunbarx--- via use-livecode To: use-livecode Cc: dunbarx Sent: Wed, Sep 25, 2019 3:45 pm Subject: Re: Stacks and Sub St

Re: Stacks and Sub Stacks

2019-09-25 Thread Peter Bogdanoff via use-livecode
Mark, you can easily use the send command for this. There is also the dispatch command. The call would go directly to the object, bypassing any hierarchy. Thus you can have the same-named handlers is other stacks without a conflict. Sometimes it is a good thing to have a same-named handler in va

Re: Stacks and Sub Stacks

2019-09-25 Thread dunbarx--- via use-livecode
Hi. Substacks are below (Hi, Jacque) the mainStack which own them in the message hierarchy. Try this: Make a new stack, name it "Main1". Make a sub stack of that stack, and name it "Sub1". Put this into the script of the main stack: on mouseUp   answer "Main" && random(99) end mouseUp Now put t

Re: Stacks and Sub Stacks

2019-09-25 Thread Mark Smith via use-livecode
Do you ever have to call a substack from a main stack? If you do, do you have to preface the handler with a substack reference or does LC know where to look? Can you have 2 handlers by the same name in different sub stacks? How about in the main stack and a substack (that would really get confus

Re: Stacks and Sub Stacks

2019-09-25 Thread Phil Davis via use-livecode
On 9/25/19 7:43 AM, Sannyasin Brahmanathaswami via use-livecode wrote: Related: if you have this in the message box. put the openstacks you only get the 1. presently open binary stacks 2. any script only stack that you explicitly have open in the IDE Some more options: put revLo

RE: In-App Purchase Subscription

2019-09-25 Thread Ralph DiMola via use-livecode
2 quick notes on iOS in-app products. 1) DO NOT add a screen shot until you are getting ready to submit. The in-app product will time-out and you can't test. 2) Apple has never provided a facility to test a purchase that the user disputes and gets canceled in the sandbox. The only way to test is to

In-App Purchase Subscription

2019-09-25 Thread Todd Fabacher via use-livecode
Hello LiveCode community, Does anyone have a sample of selling a subscription using LiveCode's In-App Purchase functionality? We are looking to sell an app with a monthly fee. I have it set up in Apple correct, but getting errors in testing. --Todd Fabacher ___

Re: Stacks and Sub Stacks

2019-09-25 Thread J. Landman Gay via use-livecode
There's "the stacksInUse" for those. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 25, 2019 9:45:22 AM Sannyasin Brahmanathaswami via use-livecode wrote: Related: if you have this in the message box. put the openstack

Get Definition

2019-09-25 Thread Sannyasin Brahmanathaswami via use-livecode
We have a command command Journal_LaunchEntry pEntryID in the message path, via a start using "model_Journal.livecodescript" But click on the command script editor "Get definition" is dimmed. Is this a "bug"? I can you find a search to find it, but that seems"lame" BR ___

Re: Stacks and Sub Stacks

2019-09-25 Thread Sannyasin Brahmanathaswami via use-livecode
Related: if you have this in the message box. put the openstacks you only get the 1. presently open binary stacks 2. any script only stack that you explicitly have open in the IDE But, can you we a list of all stacks available to the message path "right now" We can query the stack file

Re: Stacks and Sub Stacks

2019-09-25 Thread dunbarx--- via use-livecode
Hi. You probably mean script-only stacks. Substacks are just stacks, but they live in the same file as the mainStack. It helps with organization, and when you save one, you save them all. You can only have one mainStack, but as many subStacks as you like. For me, I have projects that use substack

Stacks and Sub Stacks

2019-09-25 Thread Patrick Roza via use-livecode
Looking for some good examples of the Main stack used with sub stacks. Looking for best practices on usage. Also using text-only stacks. Thanks, Patrick ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsu