Re: Colour Manipulation

2017-03-18 Thread Jonathan Lynch via use-livecode
It would be amazing if the LC folks created an ImageMagick wrapper so that we could use it as an external or widget! Sent from my iPhone > On Mar 18, 2017, at 11:30 PM, Mike Bonner via use-livecode > wrote: > > You could write a small app just to do the

Re: Colour Manipulation

2017-03-18 Thread Mike Bonner via use-livecode
You could write a small app just to do the processing (or use a web server with an lc script to process) break it into chunks, and spawn processes/server requests to offload the work maybe. Though imagemagick would be a pretty awesome solution if it can be made to do what you need. On Sat, Mar

Re: Colour Manipulation

2017-03-18 Thread Jonathan Lynch via use-livecode
You could put the entire ImageMagick set of files into custom properties, then, when your app first opens, look to see if ImageMagick is present. If not, then have your app save the ImageMagick files in the same folder as your app. I have done that sort of thing before - big files, but works

Linux 32bit?

2017-03-18 Thread Alejandro Tejada via use-livecode
Hi Mark, on Sat 18, March 2017, Mark Wieder wrote: > That website makes FOSS look bad. > RR/LC's web presence keeps getting > dumbed down. Probably, this requirement only wants to create a link between new LiveCode users and the current LiveCode community and company. Mark, How many new

Re: Colour Manipulation

2017-03-18 Thread Jonathan Lynch via use-livecode
With 10 million pixels, comparing 3 different base colors (RGB), and checking both upper and lower bounds, that comes to 60 million comparisons. That is an awful lot for a scripted environment. You would need to make an external (and, frankly, the LC instructions on making desktop externals do

Re: Linux 32bit?

2017-03-18 Thread Phil Thane via use-livecode
OK now I have the right download, just started the beginners' guide. I've been using and writing about Linux and FOSS[1] generally for about 15 years but my programming experience stopped at BBC Basic in about 1990-something. Thanks for your help. -- Phil Thane www.pthane.co.uk

Re: Linux 32bit?

2017-03-18 Thread Mark Wieder via use-livecode
On 03/18/2017 12:39 PM, Phil Thane via use-livecode wrote: OK, I'm back. When I follow the links I end up here: https://livecode.org/download-after-sign-up/ Ah. Yeah. That website makes FOSS look bad. RR/LC's web presence keeps getting dumbed down. -- Mark Wieder ahsoftw...@gmail.com

Re: Linux 32bit?

2017-03-18 Thread Phil Thane via use-livecode
Thanks, it's downloading now... -- Phil Thane www.pthane.co.uk p...@pthane.co.uk 01767 449759 07582 750607 Twitter @pthane On Saturday, 18 March 2017 13:45:19 GMT Mike Bonner via use-livecode wrote: > Go here: http://downloads.livecode.com/livecode/ > Another reason the site should provide a

App Standalone Splash Screens/Icon Deployment

2017-03-18 Thread Sannyasin Brahmanathaswami via use-livecode
I am wondering how other teams working collaboratively using Git handle their a) Splash screens b) App Icon c) Main Stack Binary Scenario: you have Devs A, B, C, D working on the same app. Very modular with lots of text only scripts. But the main stack used to build the standalone, call it

Re: Linux 32bit?

2017-03-18 Thread Mike Bonner via use-livecode
Go here: http://downloads.livecode.com/livecode/ Another reason the site should provide a direct link rather than obfuscate. On Sat, Mar 18, 2017 at 1:39 PM, Phil Thane via use-livecode < use-livecode@lists.runrev.com> wrote: > OK, I'm back. When I follow the links I end up here: > >

Re: Linux 32bit?

2017-03-18 Thread Phil Thane via use-livecode
OK, I'm back. When I follow the links I end up here: https://livecode.org/download-after-sign-up/ There is only one button 'Download LiveCode Community'. I assume it then probes my hardware and comes up with the wrong result because the download is: 'LiveCodeCommunityInstaller-8_1_3-Linux.x64'

Colour Manipulation

2017-03-18 Thread Peter Reid via use-livecode
I've got an app that allows the user to display an image using a variable number of colours (2-24 colours). In addition, the user can specify upper and lower thresholds so that all pixels below a specified value are displayed using a colour such as black and all pixels with values above a

Re: Dropbox Public Folder

2017-03-18 Thread Dan Brown via use-livecode
Minio is a good solution for self hosted AWS S3 type storage https://www.minio.io On 18 Mar 2017 5:15 pm, "Mike Kerner via use-livecode" < use-livecode@lists.runrev.com> wrote: > In theory, at least, for ios, you can compile only for specific devices. > AirLaunch is more convenient than Apple's

Re: Dropbox Public Folder

2017-03-18 Thread Mike Kerner via use-livecode
In theory, at least, for ios, you can compile only for specific devices. AirLaunch is more convenient than Apple's private distribution tools. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Dropbox Public Folder

2017-03-18 Thread Richard Gaskin via use-livecode
Mike Kerner wrote: > Now that the Public folder has been changed, what is everyone doing > to deal with it? The main effect that I see is that it is more > complicated to deal with distributing mobile apps for internal use > and external testing. I started messing with how to get it to work >

Re: (off) dropbox down

2017-03-18 Thread Mike Kerner via use-livecode
We got blasted sometime between midnight and 1 EDT. The rest of the US got hosed between 6 and 7 AM. They weren't up until 10:15 EDT. Anyway, that's the first time we've seen an outage that was long enough for us to notice since we started using DB with LC. Roger, I'm going to start a

Re: SFTP with .PPK file

2017-03-18 Thread Charles Warwick via use-livecode
Hi Bob, tsNet calculates the public key from the private key, so you only need to pass the private key to the tsNet functions. Cheers, Charles On 18/03/2017 4:00 AM, Bob Sneidar via use-livecode wrote: Looks like it DOES need the public key after all. I thought that was the way SSH

Re: SFTP with .PPK file

2017-03-18 Thread Charles Warwick via use-livecode
Hi Steve, Ahh... it's been a while since I wrote the SSH component of tsNet and I've been unfortunately relying on the documentation I wrote when checking your code! tSettings["ssh_private_key"] must provide the "path" to the private key, not the contents of the private key (another