Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-12 Thread Richmond via use-livecode
That sounds as if "things" are possible. I have run off a very simple standalone (one card, one button, one field) and uploaded it to Dropbox, and would be most grateful if you can try to get it to run. https://www.dropbox.com/s/518kxvml2si3xic/ISLAND.zip?dl=0 I am currently running Mojave as

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-12 Thread Richmond via use-livecode
I wonder if downloading-qua-downloading is the problem? Possibly downloading some sort of compressed file (.zip, .7zx, other type) and then decompressing it on the target machine will allow installation? Richmond. On 12.09.19 8:05, Rick Harrison via use-livecode wrote: That behavior does

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-12 Thread Phil Jimmieson via use-livecode
From experiments that I’ve done, it’s the downloading bit which flags an App as needing special treatment by the OS. If you build it and transfer it via a USB stick (or CD), then it’s ok. It’s when you download it - either as the app itself, or as a zipped version. I think the zip file is

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-12 Thread JB via use-livecode
I am still on macOS 10.11.6 so I don’t know much about what is happening but I was wondering if you transferred the file with a secure connection like CyberDuck does the download bit get changed? Another question that might be a work around is if you zip the file and then zip the zip of that

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-12 Thread Keith Martin via use-livecode
On 11 Sep 2019, at 16:21, Dar Scott Consulting via use-livecode wrote: At one time one could get past OSs, but I don't think it is the case now If a past OS has been downloaded through one's standard Mac/me/iCloud account in the past it can be downloaded and installed again. It can also be

Re: Browser selections

2019-09-12 Thread hh via use-livecode
> JLG wrote: > Is there a way select text by script in a browser widget? I thought I'd > done that before but I don't see a command for it now. You certainly didn't that without javascript. Here is a demostack that shows how to do that, only a few lines are needed for using a

BasicGeoLib_v100

2019-09-12 Thread hh via use-livecode
Some specialists may be interested in the following, please report if you have any problem with the stack. BasicGeoLib is a collection of very basic functions for using geoPoints. The points have to be in the format: longitude,latitude in that order, as decimal numbers, as in GeoJSON, NOT in

Re: BasicGeoLib_v100

2019-09-12 Thread hh via use-livecode
Forgot the link. BasicGeoLib is available on "SampleStacks" or here: http://livecodeshare.runrev.com/stack/949/basicGeoLib ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Browser selections

2019-09-12 Thread J. Landman Gay via use-livecode
Is there a way select text by script in a browser widget? I thought I'd done that before but I don't see a command for it now. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: BasicGeoLib_v100

2019-09-12 Thread Mark Talluto via use-livecode
Thank for this. :) Best regards, Mark Talluto livecloud.io nursenotes.net canelasoftware.com > On Sep 12, 2019, at 1:16 PM, hh via use-livecode > wrote: > > Some specialists may be interested in the following,

Re: Browser selections

2019-09-12 Thread hh via use-livecode
Perhaps you wish to select the text (not getting the selected text what is more difficult) of a textarea with id='j1" then you can do: on mouseUp put 10 into selStart; put 20 into selEnd do "document.getElementById('j1')." & \ "setSelectionRange("& selStart,selEnd &");" in widget

LC Server UT08 Encode Error

2019-09-12 Thread Rick Harrison via use-livecode
I am having a problem with LC Server posting data to my Postgresql database. (LC Server version 9.0.4) If I type into a form field such as for a field named “description”, and submit the field, it goes into the database without any problems whatsoever. If I compose a description in an

Re: Browser selections

2019-09-12 Thread J. Landman Gay via use-livecode
On 9/12/19 5:01 PM, hh via use-livecode wrote: JLG wrote: Is there a way select text by script in a browser widget? I thought I'd done that before but I don't see a command for it now. You certainly didn't that without javascript. Here is a demostack that shows how to do that, only a few

Re: BasicGeoLib_v100

2019-09-12 Thread William Prothero via use-livecode
Nice contribution. Thanks! Bill > On Sep 12, 2019, at 1:16 PM, hh via use-livecode > wrote: > > Some specialists may be interested in the following, please report if you > have any problem with the stack. > > BasicGeoLib is a collection of very basic functions for using geoPoints. >