@bogs: Thanks a lot The backdrop was above everything. Previously I used CRTL-M to get the message box. I didn’t think to use ALT-TAB I need some days off.
Hi, Since yesterday, each time I start LC, I have to open the message box to remove the background pane. set the backdrop to none I have the same problem with LC 8 et LC9-RC3. I already have modified the preferences, removed livecode7.rev stack from %appdata%\RunRev\Preferences folder... Same result...
Hi, Thanks for this answer. I build apps for Desktop and Mobile. I don't want to manage two applications for the same thing (even if they share a good part of the code). So my code contains a lot of : - if environment() is "mobile" then... - if envitonment() is "desktop" then... Why not offer the sa...
Thanks for the answer. > Please don't use local variables, but custom properties. sBrowserID isn't a local but a script local. > Why do you think that sBrowserID could not be an integer? When the browser can't be created it isn't an integer. > Instead of lock screen I'd put all in PreOpenCard messag...
Hi,
My app crashes when I try to use mobileControlGet (to get the current URL in the browser).
See the following stack (press GO then URL).
Regards,
jihem
Hi,
I would like to load data from an url in a background task (on iOS). I know I can do this with "load url "http://..." with message callback".
But I need to request the server with the http POST method (not GET like it is done). How can I specify the method?
Regards,
jihem
Hi, I made a calendar group to select a date. You can copy/resize it (on your own card). The following stack shows how to use it to set a date and to get the chosen date. Any comment are welcome. I will adapt this project for localization. http://www.codyssea.com/downloads/libCalendar.zip I hope thi...
libURLSetStatusCallback is not available on iOS nor Android.
How can I do a background task (update a progress bar, display messages) while getting/posting data to an URL (on a mobile device) ?
get url("http://....")
post tData to url("http://...")
with callback on a mobile device ?
I use the date in seconds to compute the number of days between two dates. And got this problem on a system in Washington DC (03/08/2015, 03/09/2015) and on another in France (03/29/2015, 03/30/2015)… #! /bin/lc local tDay local tFst -- put the long date into tDay -- put "03/29/2015" into tDay put "...
> if is better to make blob or to store the path for the photo? If you use Apache and LC Server, the performance would be better if you store the path of the file. Apache is very good to serve static contents (cache, http keep alive,...). You will have to create folders and subfolders because OS don...
I'm agree with Newbie4 and Simon if you have only to build the client part (and you don't have access to the server scripts). The link provided by Newbie4 describes the JSON parts as previously reported. The best way is to manage both parts (server and client). So you don"t have to fear about a chan...
If the data are in a SQL server (MySQL, PostgreSQL, …) you need to install a web server (Apache) and add LiveCode server as CGI interpreter. You can follow the general guideline: http://lessons.runrev.com/m/4070/l/36652-how-do-i-install-livecode-server-on-linux-with-apache . If you want to try witho...