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

2018-11-18 Thread Pi Digital via use-livecode
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 Digita

Re: bignum math library

2018-11-18 Thread hh via use-livecode
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/Mik

Re: iOS Policies

2018-11-18 Thread Colin Holgate via use-livecode
I’ve seen similar issues if you add in awards, such as “Best App in Google Play”. Pretty sure Amazon are similar about promoting other apps stores, and even Google apps go through a review process. You wouldn’t dream of putting “Support for iOS 12 and iPhone X” in your Android submissions, thou

RE: iOS Policies

2018-11-18 Thread Ralph DiMola via use-livecode
BR, I once got rejected for the same thing. When you play with a trillion dollar company they call all the shots. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Be

OT: iOS Policies

2018-11-18 Thread Sannyasin Brahmanathaswami via use-livecode
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 - Performan

Re: bignum math library

2018-11-18 Thread Tom Glod via use-livecode
very impressed ..thank you. On Sun, Nov 18, 2018 at 1:29 PM Geoff Canyon via use-livecode < use-livecode@lists.runrev.com> wrote: > I've created bignum libraries in the past, but never organized it or did > all four operators. So I started with earlier versions of some of the > functions, optimiz

Re: Array editing or Validate JSON string?

2018-11-18 Thread prothero--- via use-livecode
Jacqueline, Thanks. Makes sense. I’ll do that. Bill William Prothero http://es.earthednet.org > On Nov 18, 2018, at 11:40 AM, J. Landman Gay via use-livecode > wrote: > > When I needed to check JSON validation, I put the JSONToArray function inside > a "try" structure. The catch clause will t

Re: Array editing or Validate JSON string?

2018-11-18 Thread J. Landman Gay via use-livecode
When I needed to check JSON validation, I put the JSONToArray function inside a "try" structure. The catch clause will trigger and tell you there's an error. It isn't too much different than what the editor does but It can give you a clue. -- Jacqueline Landman Gay | jac...@hyperactivesw.com H

Re: Array editing or Validate JSON string?

2018-11-18 Thread prothero--- via use-livecode
Bob, Tnx for the info. However, isn’t it reasonable that the LC conversion should respond with some indication that it can’t do the JSON to array conversion, rather than throw a script error? Bill William Prothero http://es.earthednet.org > On Nov 18, 2018, at 6:18 AM, bob--- via use-livecode

bignum math library

2018-11-18 Thread Geoff Canyon via use-livecode
I've created bignum libraries in the past, but never organized it or did all four operators. So I started with earlier versions of some of the functions, optimized, corrected, and extended, and here it is: https://github.com/gcanyon/bignum It includes functions for addition, subtraction, multiplic

Re: Stack Height/Menubar

2018-11-18 Thread Rick Harrison via use-livecode
Nice, I didn’t know it would work on locked controls. This app was originally for iOS so that was what caught me. Thanks again, Rick > On Nov 18, 2018, at 12:58 PM, J. Landman Gay via use-livecode > wrote: > > Scripts can move locked controls, so you won't have to worry about that. If > the

Re: Stack Height/Menubar

2018-11-18 Thread J. Landman Gay via use-livecode
Scripts can move locked controls, so you won't have to worry about that. If the groups are shared (background groups) their content will move with them and the script won't touch those buttons. It will also move card groups, so you may need to check for the content controls in that case. You w

Re: Stack Height/Menubar

2018-11-18 Thread Rick Harrison via use-livecode
Hi Jacqueline, Thanks for pointing out this routine. I have some modifications I need to make to it though. I have to check to see if any items are locked, and unlock them before changing the location and then re-lock them after the change. The number of controls also includes groups which

Re: use password protected scripts on LC web server

2018-11-18 Thread Matthias Rebbe via use-livecode
That´s the way i am doing it with the complete script, not only with confidential data. Most of my scripts in public web root just contain an include command e.g. The included file, which is stored outside the public web area then contains the complete script. So in any case the Livecode Serv

Re: Array editing or Validate JSON string?

2018-11-18 Thread bob--- via use-livecode
Livecode provides a text editor to, well, edit text. It does not understand the syntax/grammar of languages (Livecode, HTML, Javascript, JSON, YML, etc). What you need is an editor that “knows" JSON. Your best bet is to copy the text into Sublime, Visual Studio Code or Atom which do understand

Re: use password protected scripts on LC web server

2018-11-18 Thread AndyP via use-livecode
You can also put your LC scripts outside the public web root, then include them in a calling LC script for extra security. - Andy Piddock My software never has bugs. It just develops random features. TinyIDE a Free alternative minimalist IDE Plugin for LiveCode Script editor Themer