Examples of encryption for database access

2018-06-24 Thread William Prothero via use-livecode
Folks: In case you are interested, or if you have any feedback, here is the code I use to test AES encryption for sending posts to interact with a mysql database. This work is inspired by the excellent dbLib product of Andre Garza, that got me to look into encryption a lot deeper than I had to

Re: Browser Widget Layer on mobile

2018-06-24 Thread Monte Goulding via use-livecode
Hi Dan This sounds like a bug to me. For widgets that are in groups we create an extra container layer view to put them in so they should be clipped to the group rect and also as close as possible respect the layering of objects on the card. It sounds like it’s working correctly for you on mac

RE: Top Bottom Left Right

2018-06-24 Thread General 2018 via use-livecode
Klaus , At least I was not going mad ! , thanks. Regards Camm -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Klaus major-k via use-livecode Sent: 24 June 2018 20:58 To: How to use LiveCode Cc: Klaus major-k Subject: Re: Top Bottom Left

Re: Top Bottom Left Right

2018-06-24 Thread Klaus major-k via use-livecode
Hi Cam, > Am 24.06.2018 um 21:49 schrieb General 2018 via use-livecode > : > > Hi , > > If I use property inspector and tick "Resize Rect when setting property" and > change top,bottom,left or right property the rect changes shape in its fixed > location as expected. > > In runtime the rect

Top Bottom Left Right

2018-06-24 Thread General 2018 via use-livecode
Hi , If I use property inspector and tick "Resize Rect when setting property" and change top,bottom,left or right property the rect changes shape in its fixed location as expected. In runtime the rect does not resize but moves location by setting property top,bottom,left or right ? Have I

RE: Open source iOS and Android

2018-06-24 Thread Linda Miller, DVM via use-livecode
My original question is about the Community version of LC. If apps built with it are supposed to be open source, is there a "place" where the developers "share" their apps. How do we know what people have created in order to request a copy? I personally would like to "meet" other developers

Re: Open source iOS and Android

2018-06-24 Thread Sannyasin Brahmanathaswami via use-livecode
Linda Do you know GIT? A lot of us (developers) have "stuff on GIT" . You do a deep search through mailings Search for "https://github.com/ And you will find the public repositories. I am sure you will find plenty! Here is one example (be sure to get the nightly branch)

Re: Stripping styling from the clipboard...

2018-06-24 Thread J. Landman Gay via use-livecode
Using an intermediate text editor also works, and would take care of any UTF8 conversion too if that's causing issues. But since you're in LC already it might be more convenient to have a handler in a backscript or a plugin that would do it. -- Jacqueline Landman Gay |

Re: Stripping styling from the clipboard...

2018-06-24 Thread Richmond Mathewson via use-livecode
Well that is a pain in the bum! I suppose I should go through an intermediate stage using a plain-vanilla text editor. Richmond. On 24/6/2018 8:19 am, J. Landman Gay via use-livecode wrote: It happens when a colorized handler is copied directly from the script editor and pasted into a list

Re: Stripping styling from the clipboard...

2018-06-24 Thread Richmond Mathewson via use-livecode
Richmond. why does your code paste that way? I don't know: looks terrible! Over "here" on ThunderBird e-mail client on MacOS 10.7.5 that code was pasted DIRECTLY from the LiveCode scriptEditor . . . Richmond. ___ use-livecode mailing list

Re: Translation Service Deepl.com

2018-06-24 Thread Mike Bonner via use-livecode
Same method as yandex from a recent thread, built your query string some way and send it to the server. something like.. put urlencode("Text to translate") into tText put "https://api.deepl.com/v1/translate?text=; & tText & "target_lang=EN_key=YourAuthKeyHere" into tUrl get URL tUrl put it You

Translation Service Deepl.com

2018-06-24 Thread R.H. via use-livecode
I like to draw your attention to DeepL Translator - an online translation service that does much better than anything before, including Google, Microsoft or whatever. There is a free service and a paid one as well. Right now it supports English, Spanish, Italian, French, German, Polish and Dutch.