Re: bignum math library

2018-11-19 Thread Geoff Canyon via use-livecode
Well, the code is theirs to use if it's useful. We'll see.

On Mon, Nov 19, 2018 at 3:02 PM hh via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Here's a scenario that makes your scripts nevertheless valuable.
>
> If they implement "Decimal number" for LC Builder, what I hope,
> because the numbers implementation in LCB is rather uncomplete.
>
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: bignum math library

2018-11-19 Thread hh via use-livecode
Here's a scenario that makes your scripts nevertheless valuable.

If they implement "Decimal number" for LC Builder, what I hope,
because the numbers implementation in LCB is rather uncomplete.



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Selecting text in non-focused field

2018-11-19 Thread Bob Sneidar via use-livecode
I have a FindBar "object" (group of objects) that I use for querying a sql 
database. I ues rawKeyUp and a delay to do what you are trying to do. I think I 
have a demo stack up too with a datagrid and sqlite database. Look for it under 
Robert Sneidar. 

Bob S


> On Nov 19, 2018, at 14:02 , Kaveh Bazargan via use-livecode 
>  wrote:
> 
> Thanks Brian. I want to have a flexible search capability and that is
> indeed one of the things that would be good to have. I have a feeling it is
> going to be a bit slow so will need some tricks or compromise. For
> instance, only search if no key pressed for .5 seconds, so it not
> interrupting typing..
> 
> On Mon, 19 Nov 2018 at 21:57, Brian Milby via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> Are you meaning that you need to highlight text found in another field?
>> Easiest way to describe what I’m referring to is the LC dictionary.  If you
>> type a term in the search box, the matches are highlighted yellow where
>> they are found (syntax and synonym fields).  Implementation would be
>> completely different since the dictionary is coded in JavaScript.
>> 
>> But, if that is what you are needing, then setting the style of the found
>> chunks should give what you need (subject to the potential issue of
>> performance).
>> 
>> Thanks,
>> Brian
>> On Nov 19, 2018, 4:31 PM -0500, Kaveh Bazargan via use-livecode <
>> use-livecode@lists.runrev.com>, wrote:
>>> Didn't know about foundChunk. Useful, thanks. :-)
>>> 
>>> It is just one text field I am working on.
>>> 
>>> On Mon, 19 Nov 2018 at 21:12, dunbarxx via use-livecode <
>>> use-livecode@lists.runrev.com> wrote:
>>> 
 Have you tried selecting the foundChunk?
 
 If you are going to write a routine that checks all the fields on a
>> card
 and
 catalog them, you can avoid the standard "find" command, and roll your
>> own.
 
 Craig
 
 
 
 --
 Sent from:
 
>> http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
>>> 
>>> 
>>> --
>>> Kaveh Bazargan
>>> Director
>>> River Valley Technologies  •
>> Twitter
>>>  • LinkedIn
>>> 
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> 
> -- 
> Kaveh Bazargan
> Director
> River Valley Technologies  • Twitter
>  • LinkedIn
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Selecting text in non-focused field

2018-11-19 Thread Kaveh Bazargan via use-livecode
Thanks Brian. I want to have a flexible search capability and that is
indeed one of the things that would be good to have. I have a feeling it is
going to be a bit slow so will need some tricks or compromise. For
instance, only search if no key pressed for .5 seconds, so it not
interrupting typing..

On Mon, 19 Nov 2018 at 21:57, Brian Milby via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Are you meaning that you need to highlight text found in another field?
> Easiest way to describe what I’m referring to is the LC dictionary.  If you
> type a term in the search box, the matches are highlighted yellow where
> they are found (syntax and synonym fields).  Implementation would be
> completely different since the dictionary is coded in JavaScript.
>
> But, if that is what you are needing, then setting the style of the found
> chunks should give what you need (subject to the potential issue of
> performance).
>
> Thanks,
> Brian
> On Nov 19, 2018, 4:31 PM -0500, Kaveh Bazargan via use-livecode <
> use-livecode@lists.runrev.com>, wrote:
> > Didn't know about foundChunk. Useful, thanks. :-)
> >
> > It is just one text field I am working on.
> >
> > On Mon, 19 Nov 2018 at 21:12, dunbarxx via use-livecode <
> > use-livecode@lists.runrev.com> wrote:
> >
> > > Have you tried selecting the foundChunk?
> > >
> > > If you are going to write a routine that checks all the fields on a
> card
> > > and
> > > catalog them, you can avoid the standard "find" command, and roll your
> own.
> > >
> > > Craig
> > >
> > >
> > >
> > > --
> > > Sent from:
> > >
> http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html
> > >
> > > ___
> > > use-livecode mailing list
> > > use-livecode@lists.runrev.com
> > > Please visit this url to subscribe, unsubscribe and manage your
> > > subscription preferences:
> > > http://lists.runrev.com/mailman/listinfo/use-livecode
> > >
> >
> >
> > --
> > Kaveh Bazargan
> > Director
> > River Valley Technologies  •
> Twitter
> >  • LinkedIn
> > 
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode



-- 
Kaveh Bazargan
Director
River Valley Technologies  • Twitter
 • LinkedIn

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Selecting text in non-focused field

2018-11-19 Thread Brian Milby via use-livecode
Are you meaning that you need to highlight text found in another field?  
Easiest way to describe what I’m referring to is the LC dictionary.  If you 
type a term in the search box, the matches are highlighted yellow where they 
are found (syntax and synonym fields).  Implementation would be completely 
different since the dictionary is coded in JavaScript.

But, if that is what you are needing, then setting the style of the found 
chunks should give what you need (subject to the potential issue of 
performance).

Thanks,
Brian
On Nov 19, 2018, 4:31 PM -0500, Kaveh Bazargan via use-livecode 
, wrote:
> Didn't know about foundChunk. Useful, thanks. :-)
>
> It is just one text field I am working on.
>
> On Mon, 19 Nov 2018 at 21:12, dunbarxx via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
> > Have you tried selecting the foundChunk?
> >
> > If you are going to write a routine that checks all the fields on a card
> > and
> > catalog them, you can avoid the standard "find" command, and roll your own.
> >
> > Craig
> >
> >
> >
> > --
> > Sent from:
> > http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html
> >
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> > subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> >
>
>
> --
> Kaveh Bazargan
> Director
> River Valley Technologies  • Twitter
>  • LinkedIn
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Selecting text in non-focused field

2018-11-19 Thread Kaveh Bazargan via use-livecode
Didn't know about foundChunk. Useful, thanks. :-)

It is just one text field I am working on.

On Mon, 19 Nov 2018 at 21:12, dunbarxx via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Have you tried selecting the foundChunk?
>
> If you are going to write a routine that checks all the fields on a card
> and
> catalog them, you can avoid the standard "find" command, and roll your own.
>
> Craig
>
>
>
> --
> Sent from:
> http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>


-- 
Kaveh Bazargan
Director
River Valley Technologies  • Twitter
 • LinkedIn

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Selecting text in non-focused field

2018-11-19 Thread dunbarxx via use-livecode
Have you tried selecting the foundChunk?

If you are going to write a routine that checks all the fields on a card and
catalog them, you can avoid the standard "find" command, and roll your own.

Craig



--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


iOS sharing extension

2018-11-19 Thread David Bovill via use-livecode
How could I create the ability for Livecode mobile apps - say iOS but
ideally also on Android) to add the ability for other apps to share to them?

   -
   
https://developer.apple.com/library/archive/documentation/General/Conceptual/ExtensibilityPG/Share.html

I can't find any thread here or in the forums?
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: bignum math library

2018-11-19 Thread Geoff Canyon via use-livecode
There are libraries for this stuff in C. I'm sure if they incorporate
something in the engine my stuff would be entirely unnecessary. Anything in
C is going to *far* outclass/speed anything I've done in script.

On Sun, Nov 18, 2018 at 11:15 PM hh via use-livecode <
use-livecode@lists.runrev.com> wrote:

> On LC Global (Nov 2018, Monthly report) Kevin and Ali announced among
> others "Decimal Number Implementation", see my screenshot
> http://forums.livecode.com/viewtopic.php?f=76&t=31797
>
> This is probably close to an arbitrary-precision Decimal type,
> I know the javascript version:
> https://github.com/MikeMcl/decimal.js/
>
> Perhaps it is possible to have "synergetic effects" by joining your work?
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Selecting text in non-focused field

2018-11-19 Thread Kaveh Bazargan via use-livecode
Hi Craig

Thanks for your time. I should have given more details...

i am indeed using enterInField (actually returnInField), and the focus
remains the search box

I started with the Find command, but then changed to using matchChunk,
because:

   - The Find command shows a thin black border that is hard to see (any
   way of controlling this?
   - I want to do more complex stuff, e.g.
  - regex searches
  - Find all (extract lines containing the text)
  - Live search, so highlight item or items found as I type
  - Perhaps using different highlight colors for different types of
  finds

Looking again, I have to reinvent some aspects that Find already has, e.g.

   - Searching from last item found
   - Options for whole word etc

So thanks for that reminder! My questions now:

   - When I use matchChunk and select some text that is found (as if
   selecting manually), that selection disappears when the text field is not
   focussed. Any way around that? I am thinking I might use backgroundcolor,
   depending on speed
   - What control do I have on the style of the item found – other than
   thin black line?
   - Has anyone written a full text editing or word processing program I
   can get ideas from?

Thanks again Craig. :-)

On Mon, 19 Nov 2018 at 18:59, dunbarxx via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Ah.  Maybe the point is that you can continue typing, finding other strings
> as you go. OK.
>
> But my search field, with its "enterInField" handler:
> on enterinField
>find me
> end enterinField
>
> will find any text in any field, and continue to find as you either
> continue
> typing or delete what you already have. The search field retains focus.
>
> Craig
>
>
>
> --
> Sent from:
> http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>


-- 
Kaveh Bazargan
Director
River Valley Technologies  • Twitter
 • LinkedIn

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Selecting text in non-focused field

2018-11-19 Thread dunbarxx via use-livecode
Ah.  Maybe the point is that you can continue typing, finding other strings
as you go. OK.

But my search field, with its "enterInField" handler:
on enterinField
   find me
end enterinField

will find any text in any field, and continue to find as you either continue
typing or delete what you already have. The search field retains focus.

Craig



--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Selecting text in non-focused field

2018-11-19 Thread dunbarxx via use-livecode
Hi.

Not sure exactly what you mean.

You have a ("search") field that you type into, and the text in that field
is then found in another field?

How different is that process from this? On a card with two fields, in fld 1
type some text that already exists in fld 2. Then in a button script:
on mouseUp
   find the text of fld 1 in fld 2
end mouseUp

The "search" field retains focus.

The same if there is an "enterInField" handler in the search field. The
search field retains focus.

But what is the point of keeping focus? What can you do if that happens,
that you cannot do if focus is lost? And how are you working this, that the
search field loses focus in the first place

Craig Newman

Craig Newman



--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Selecting text in non-focused field

2018-11-19 Thread Kaveh Bazargan via use-livecode
Am I right that if a field is not focused on in a card, then the text in it
cannot be selected?

I have a search field that I type in and when I press enter, it finds the
string in another text field. But when the search box is focused on again
the selection goes.

I want to be able to have the search box focused all the time so I can vary
the search. Any ideas pls?

-- 
Kaveh Bazargan
Director
River Valley Technologies  • Twitter
 • LinkedIn

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: where can I learn about macOS app Help menu Search menu item?

2018-11-19 Thread kee nethery via use-livecode
Awesome. thanks!
Kee


> On Nov 18, 2018, at 11:55 PM, Pi Digital via use-livecode 
>  wrote:
> 
> Here’s the link to the Apple Dev page for help view files
> 
> https://developer.apple.com/library/archive/documentation/Carbon/Conceptual/ProvidingUserAssitAppleHelp/authoring_help/authoring_help_book.html
> 
> Once you apply this with your app it is searchable along with menu items. 
> 
> Sean Cole
> Pi Digital Prod Ltd


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Array editing or Validate JSON string?

2018-11-19 Thread Mark Talluto via use-livecode
I always appreciate error reporting. I ran into the same problem. Sometimes you 
can see the error easily enough. But, in complex arrays, it is harder to see 
the error when looking at JSON. For this reason, I find dropping it into a 
validator to be useful. They can point you in the right direction to fix the 
JSON.

But, if you are trying to pick up on this programmatically in an app, the best 
you can do is check for success or failure by looking for data in the array. If 
it is not there, an error took place.


Best regards,

Mark Talluto
livecloud.io 
nursenotes.net 
canelasoftware.com 




> On Nov 17, 2018, at 3:39 PM, William Prothero via use-livecode 
>  wrote:
> 
> Folks:
> I guess I could have been more clear. I am editing the JSON directly in a 
> text field. If I make a mistake, then use JSONToArray, the program just fails 
> silently. What I would like to do is get a dialog that the JSON wasn’t formed 
> correctly. Of course, since I’m using it for my personal development of my 
> app, I can know that it failed if I don’t get the answer dialog I put in 
> after it. but, it seems a kludge. Shouldn’t there be some kind of an error 
> result if the JSON is ill-formed?
> Best,
> Bill
> 
>> On Nov 16, 2018, at 1:57 PM, Mark Talluto via use-livecode 
>>  wrote:
>> 
>> Hi Bill,
>> 
>> My favorite JSON validator is:  https://jsonformatter.curiousconcept.com 
>> 
>> 
>> 
>> Best regards,
>> 
>> Mark Talluto
>> livecloud.io 
>> nursenotes.net 
>> canelasoftware.com 
>> 
>> 
>> 
>> 
>>> On Nov 15, 2018, at 3:09 PM, William Prothero via use-livecode 
>>>  wrote:
>>> 
>>> Hi, I’m editing a json string (for development uses) and wonder if there is 
>>> an easy way to validate whether the string is a valid JSON string. 
>>> 
>>> Or, perhaps there is an easier way to display and edit a pretty simple 
>>> array.
>>> 
>>> Suggestions would be helpful. Currently, I convert the array to JSON, put 
>>> it in a text field, then edit the text field. It would be convenient if it 
>>> could trap editing errors I might make. The simple way seems to just throw 
>>> an error and stop execution of the script.
>>> 
>>> Best,
>>> Bill
>>> 
>>> William A. Prothero
>>> http://earthlearningsolutions.org
>>> 
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your 
>>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: [ANN] LiveCode Advanced Application Architecture book available

2018-11-19 Thread Ludovic THEBAULT via use-livecode

> Le 19 nov. 2018 à 15:28, Andre Alves Garzia via use-livecode 
>  a écrit :
> 
> Aloha Friends,
> 
> There was a mistake in the final book generation, a chapter was missing. I've 
> issued a two new updates today to fix this. All the readers should have 
> received an email about it. If you purchased and did not receive the email, 
> please, let me know.
> 
> Cheers
> 
> andre

Hello,

I got it but in the spam folder.

Thanks for this book !

Ludovic
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: [ANN] LiveCode Advanced Application Architecture book available

2018-11-19 Thread Andre Alves Garzia via use-livecode

Aloha Friends,

There was a mistake in the final book generation, a chapter was missing. 
I've issued a two new updates today to fix this. All the readers should 
have received an email about it. If you purchased and did not receive 
the email, please, let me know.


Cheers

andre

On 11/15/2018 7:44 PM, Andre Alves Garzia wrote:

Hi Friends,

I've just released a new LiveCode book in the wild. It is called 
"LiveCode Advanced Application Architecture" and it deals with Best 
Practices from our community and the MVC pattern.


With the techniques contained in it you will build applications that 
are easier to maintain and adapt leading to a more fun and profitable 
future.


The book is offered here for GBP 15 and is comes in a zip file 
containing the book in PDF, Mobi and ePub formats without DRM and the 
source code, you can buy it by clicking here: https://sowl.co/cqnKW


BUT WAI

I've made a delicious bundle for you! I am offering a bundle of:

  * DB Lib: The most user friendly database library for LiveCode.

  * The book: The newest LiveCode book.

  * Network Tracer: A handy utility to help you debug your standalones.

  * AAG | Tools: A collection of little plugins for the IDE

For GBP 100, which is a heavy discount, basically the book is free and 
all the rest is 30% discounted. But there is moore!


The first 50 people to get this bundle will be able to schedule a 
one-on-one call with me to help them out with LiveCode related issues, 
which is something I don't usually offer. You can get this bundle at: 
https://sowl.co/BAAZl


Don't forget to check all things LiveCode at my home page: 
https://andregarzia.com/livecode


I hope you folks like this bundle and book. My plans is to schedule 
the one-on-one calls between November 2018 and March 2019, first come, 
first served.


Cheers

andre




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: OT: iOS Policies

2018-11-19 Thread Randy Hengst via use-livecode
I’ve had an app rejected for metadata, too.

I put an app of 20 single verse poems on the store. In my description of the 
app I mentioned that the poems were “under development” and I looked forward to 
feedback and adding new verses. The rejection stated that no “beta” software 
can be on the app store. All I did was remove “under development” from the 
description and then it was accepted.

be well,
randy
www.classroomFocusedSoftware.com



> On Nov 18, 2018, at 8:12 PM, Sannyasin Brahmanathaswami via use-livecode 
>  wrote:
> 
> Well, by setting the target to iOS 8. The apps went through. …but then
> 
> FWIW
> It was rejected:
> 
> I got a message saying that "you have unfilter access to YouTube, you must 
> set the app for (age) 12+)
> I had it sent for age 4+
> 
> Send for review; wait a day..
> 
> Rejected Again!
> Guideline 2.3.10 - Performance - Accurate Metadata
> 
> We noticed that your app or its metadata includes irrelevant third-party 
> platform information.
> Specifically, your app includes Android references in the “app news” section.
> Referencing third-party platforms in your app or its metadata is not 
> permitted on the App Store unless there is specific interactive functionality.
> 
> Next Steps
> To resolve this issue, please remove all instances of this information from 
> your app and its metadata, including the app description, promotional text, 
> What's New info, previews, and screenshots.
> In the "App News" (which called from the server) I made the mistake of saying
> ===
> Version 1.3
> With version 1.3, we hope to have resolved some issues for Android users. The 
> operating system is more robust. The app is less likely to quite.]
> 
> So, if the see any reference to android, Rejected!
> Somehow that feels "just wrong" to me… I use Macs but…. "greed incarnate" 
> keeps coming up in my word cloud
> 
> 
> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

[ANN] This Week in LiveCode 155

2018-11-19 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 #155 here: https://goo.gl/XWwUDg

This is a weekly newsletter about LiveCode, focussing on what's been
going on in and around the open source project. New issues will be
released weekly on Mondays. We have a dedicated mailing list that will
deliver each issue directly to you e-mail, so you don't miss any!

If you have anything you'd like mentioned (a project, a discussion
somewhere, an upcoming event) then please get in touch.


-- 
Panagiotis Merakos 
LiveCode Software Developer

Everyone Can Create Apps 
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode