Re: Livecode HTML5 and SQL

2020-04-29 Thread matthias rebbe via use-livecode
I have to correct myself. The script works when i call an url that is on the same server as the html5 app is called from. And more important parameters can also be used. And as Sean already posted about a HTML5 library, it´s possible to use an HTML5 app with an api layer using LC Server or PHP

Re: Livecode HTML5 and SQL

2020-04-29 Thread Pi Digital via use-livecode
Hi Colin I have a library I’ve created for HTML5 and php for LiveCode Deployment. Pm me at s...@pidigital.co.uk Sean Cole Pi Digital Productions Ltd eMail Ts & Cs > On 29 Apr 2020, at 20:00, matthias rebbe via use-livecode > wrote: > > If "post... to url" and "put URL..." would work, th

Re: Livecode HTML5 and SQL

2020-04-29 Thread matthias rebbe via use-livecode
If "post... to url" and "put URL..." would work, then it should work with HTLM5. But currently only load URL is supported. But to be true, i am not sure about "load URL.." I´ve used load URL only for downloading files in the past. I am not sure if the command can also be used with parameter

Re: Livecode HTML5 and SQL

2020-04-29 Thread Devin Asay via use-livecode
That’s good to know, Matthias. So it seems that what you’d have to do is, still do the MySQL I/O in LC Server scripts, but also dynamically construct the HTML output in your LC server scripts, so that the calling HTML5 app could make sense of it. Am I interpreting the situation correctly, Matt

Re: Livecode HTML5 and SQL

2020-04-29 Thread matthias rebbe via use-livecode
I was also thinking about using LC Server or PHP scripts, but if i understand it correctly then "put URL" or "POST.. to URL" aren't currently supported in the LC HTML5 engine. Only "load URL" is supported and only for http / https. Matthias - Matthias Rebbe Life Is Too Short For Boring Code

Re: Livecode HTML5 and SQL

2020-04-29 Thread Devin Asay via use-livecode
Colin, I haven’t tried it myself, but I would think you’d have to write an API layer using LiveCode Server scripting. All of the MySQL reads and writes would take place in your .lc scripts on LC Server. Then it would be simple, RESTful http calls from your HTML5 app. Of course, this all depends

Re: Livecode HTML5 networking question

2017-03-14 Thread Jonathan Lynch via use-livecode
s not there yet. > > Mike > > > Original Message > From: use-livecode@lists.runrev.com > Sent: March 14, 2017 11:53 AM > To: use-livecode@lists.runrev.com > Reply-to: use-livecode@lists.runrev.com > Cc: ambassa...@fourthworld.com > Subject: Re: Livecode HTML5 net

Re: Livecode HTML5 networking question

2017-03-14 Thread Mike Doub via use-livecode
: ambassa...@fourthworld.com Subject: Re: Livecode HTML5 networking question Mike Doub wrote: > Bob,  I understand that.  You misunderstood my question.  If I use > that statement in app,  save it as am html5 app,  will the app > function? > > The documentation says networking is not s

Re: Livecode HTML5 networking question

2017-03-14 Thread Richard Gaskin via use-livecode
Mike Doub wrote: > Bob, I understand that. You misunderstood my question. If I use > that statement in app, save it as am html5 app, will the app > function? > > The documentation says networking is not supported. What exactly > does that mean? Is the statement in question, networking? I

Re: Livecode HTML5 networking question

2017-03-14 Thread Mike Doub via use-livecode
Message   From: use-livecode@lists.runrev.com Sent: March 14, 2017 10:47 AM To: use-livecode@lists.runrev.com Reply-to: use-livecode@lists.runrev.com Cc: bobsnei...@iotecdigital.com Subject: Re: Livecode HTML5 networking question That is not HTML5. That is a standard Livecode function that has been

Re: Livecode HTML5 networking question

2017-03-14 Thread Bob Sneidar via use-livecode
That is not HTML5. That is a standard Livecode function that has been around since version 1.0. Bob S > On Mar 14, 2017, at 05:59 , Mike Doub via use-livecode > wrote: > > I was thinking about putting together a little weather app and trying the > html5 feature of livecode. I read that net

Re: LiveCode HTML5

2016-06-28 Thread Richard Gaskin
Todd Fabacher wrote: > I was just checking, I don't see a way to make an HTTP post back to a > web server. Am I wrong? If it is not there...is it in the pipeline? > > I have a HUGE project that we are planning to do in Angular JS, but > would love to do in LiveCode HTML5. LiveCode's post comman

Re: LiveCode HTML5

2016-06-28 Thread Peter TB Brett
On 28/06/2016 16:01, Todd Fabacher wrote: I was just checking, I don't see a way to make an HTTP post back to a web server. Am I wrong? If it is not there...is it in the pipeline? I have a HUGE project that we are planning to do in Angular JS, but would love to do in LiveCode HTML5. We are lo

Re: LiveCode HTML5

2016-06-28 Thread Colin Holgate
It’s not in the LiveCode 8 dictionary that I can see, but it’s in the LIveCode 7 one. Something like: post variables to URL “http://somewhere.com/example.html ” where variables would be “name=Todd&location=NYC”, etc. > On Jun 28, 2016, at 11:01 AM, Todd Fab