Re: Pass Javascript Session Cookie to LiveCode Variable?

2020-11-05 Thread Rick Harrison via use-livecode
Hi Matthias, I found the problem. You had: put $_Cookie["username”] It shouldn’t have the quotes. put $_Cookie[username] works fine. I think I made the same mistake sometime! LOL Cookies reside in the client’s web-browser which is why as users were are always clearing them out. So,

Re: New Google PlayStore Console

2020-11-05 Thread Tom Glod via use-livecode
following, On Thu, Nov 5, 2020 at 12:46 PM Ralph DiMola via use-livecode < use-livecode@lists.runrev.com> wrote: > I received these 3 warnings when uploading APKs using the new Google Play > Console. The first one I've been seeing for a while. Anyone know about the > last 2? I assume the second

Re: Segmented Control Widget

2020-11-05 Thread Bob Sneidar via use-livecode
The segmented control is fairly limited. Most of the widgets are. The properties you see are the properties you get. I did however, with a bit of clever scripting, develop a tabbed object group that works as well or better that the built in tabbed button. And for a bonus, it looks in Windows

Re: Segmented Control Widget

2020-11-05 Thread J. Landman Gay via use-livecode
On 11/5/20 1:47 AM, Terence Heaford via use-livecode wrote: I have been messing about with the Segmented Control Widget and have been trying to apply a tooltip. I noted that the tooltip can only be applied to the whole control, it does not appear possible to have a tooltip for each segment.

New Google PlayStore Console

2020-11-05 Thread Ralph DiMola via use-livecode
I received these 3 warnings when uploading APKs using the new Google Play Console. The first one I've been seeing for a while. Anyone know about the last 2? I assume the second one is LCs use of the JVM. Warning This APK results in unused code and resources being sent to users. Your app could

Re: Ideas on iOS GPS tracking needed

2020-11-05 Thread Jimmieson, Phil via use-livecode
Hi Graham, PS The only test data I have been able to find for the XCode Simulator is a bike ride in California which runs along giving a succession of GPS . It is quite useful, but naturally it doesn’t involve anomalies. You can make your own location simulations to run in the iOS simulator.

Re: mergeJSON on server problem

2020-11-05 Thread David Bovill via use-livecode
Let me dig into this in more detail with some tests - other data encoding is causing problems. Note I only find this on the unix server not with the local MacOS version of the same code and data. I’m going to refer to this stack overflow answer regarding encoding:

Re: Pass Javascript Session Cookie to LiveCode Variable?

2020-11-05 Thread matthias rebbe via use-livecode
Rick, you are mixing something. $_session array is stored on the server while sessionstorage is stored on the clients computer. I am not sure that there is a direct way to let Livecode Server read sessionstorage directly from the clients computer, but i might be wrong. At least PHP is not