"Do in widget" works only one time on iOS

2017-02-20 Thread Ludovic THEBAULT via use-livecode
Hello, I try to update an app to use the new browser widget in replacement of the revbrowser. The user can move a marker on a map and i get the coordinate of this marker with the « do in widget » function. it’s work fine in development mode but in iOS simulator or on the device, the « do in

Error when create iOS standalone, any workaround ?

2017-04-05 Thread Ludovic THEBAULT via use-livecode
Hello, Since several months now, i’ve randomly error when i compile standalone for iOS(and rarely a crash of livecode). I’am the only one ? I’ve a lot of files included (> 4000 for ± 90 Mo). If you know a workaround… Thanks ! LC 8.13, on macOS 10.11

Re: Error when create iOS standalone, any workaround ?

2017-04-05 Thread Ludovic THEBAULT via use-livecode
> Le 5 avr. 2017 à 19:14, panagiotis merakos via use-livecode > a écrit : > > Hi Ludovic, > > What is the error message you are getting? > > Best, > Panos Now i’ve this error : linkin for arm (arm64) failed with id: warning: id: warning: object file

Why since LV 8.1 the GPS acquisition is more longer ?

2017-03-07 Thread Ludovic THEBAULT via use-livecode
Hello, Why since Livecode 8.1, GPS acquisition is more longer than Livecode < 8 on mobile ? On the same place, my mobile get coordinates within few seconds with the app compiled with LV < 8.1 but get coordinates after more than 15 seconds (more than one cycle on my script) if the app is

Lineoffset work on message box but not in my script ?!

2017-08-15 Thread Ludovic THEBAULT via use-livecode
Hello, Strange bug in Livecode : Here the script (in a repeat): put line (lineoffset("c_" tcpt of line 1 of thedatas,listmailleCentre)) of listcentre into tcoordline put tcoordline into temp —> return the good value, ex : 5152 put lineoffset("%AI3",the tdatas of cd 1 of stack

Re: Application not working with MacOSX 10.6 (maybe due to tsNet)

2017-04-25 Thread Ludovic THEBAULT via use-livecode
> Le 25 avr. 2017 à 17:47, Hakima Manseri via use-livecode > a écrit : > > Hi everyone, > > I'm a LC newbie and have been trying to use an application a colleague is > developping with LiveCode 8.1.3 > > It works with MacOSX 10.9 and above but fails to launch

Pinch and zoom images with the widget browser ?

2017-05-26 Thread Ludovic THEBAULT via use-livecode
Hello, It is possible to pinch and zoom « natively » images with the widget browser as it is possible to do it with the « classic » browser : http://forums.livecode.com/viewtopic.php?f=49=11229 I’ve tried with the url of the picture but nothing is displayed on the web page, of with an basic

Bug with first key in dialog

2017-10-23 Thread Ludovic THEBAULT via use-livecode
Hello, i’ve opened this bug : http://quality.livecode.com/show_bug.cgi?id=20595 With LV 8.17 rc3 in a dialog you couldn’t use the first key of the keyboard (under the escape key) It’s just for me or someone could confirm ? Thanks ___ use-livecode

Re: Bug with first key in dialog

2017-10-23 Thread Ludovic THEBAULT via use-livecode
> Le 23 oct. 2017 à 16:58, Bob Sneidar via use-livecode > a écrit : > > If you mean in an ask dialog text field, that works for me with that same > version, MacOS 10.12.6 > > Bob S Thanks My bug seem the same issue as bug 20503

Re: Convert UTM to Lat/Long

2018-06-08 Thread Ludovic THEBAULT via use-livecode
> Le 8 juin 2018 à 18:56, Trevor DeVore via use-livecode > a écrit : > > I need to convert UTM coordinates to lat/long coordinates so I converted > the python script found at the following url to LiveCode: > >

iOS / Android differences on a scrolling list field

2018-06-15 Thread Ludovic THEBAULT via use-livecode
Hello, I’ve a card with a scrolling list field. On iOS, the user can scroll the field (with native scroller) and then select (hilite) a line like expected. On Android, as soon as you touch the field, there is an hilitedline and then the scroll. It’s not really expected and nice. Is there a

Print cards difference between Mac and Win

2018-01-27 Thread Ludovic THEBAULT via use-livecode
Hello, I’ve made a stack (on macos) that print a card in pdf. I set the printMargins to 0,0,0,0 I print the card "into 0,0,595,842" (the rect of the card) To test i set the printCardBorders to true On a mac, it’s perfect, the borders are at the limit of the « pdf paper », if i create a

Re: Print cards difference between Mac and Win

2018-01-28 Thread Ludovic THEBAULT via use-livecode
> Le 27 janv. 2018 à 20:31, J. Landman Gay via use-livecode > <use-livecode@lists.runrev.com> a écrit : > > On 1/27/18 2:19 AM, Ludovic THEBAULT via use-livecode wrote: >> Hello, >> I’ve made a stack (on macos) that print a card in pdf. >> I set the printMa

Re: Execute multiple MySQL commands

2018-02-08 Thread Ludovic THEBAULT via use-livecode
> Le 8 févr. 2018 à 16:48, Bob Sneidar via use-livecode > a écrit : > > I know where! The Dictionary: > > > SQLStatement string > A string in Structured Query Language. (Do not include a semicolon at the end > of the SQLStatement.) >Note: Some database

Execute multiple MySQL commands

2018-02-08 Thread Ludovic THEBAULT via use-livecode
Hello, I’ve an « syntax error » as result if i want to execute multiple MySQL commands, even with transactions. It is normal ? If i execute one command at time, it’s work. Thanks ! Here a sample script : revExecuteSQL tDatabaseID,"BEGIN TRANSACTION » put "INSERT INTO savemyTable (column1)

Mysql load dump

2018-02-14 Thread Ludovic THEBAULT via use-livecode
Hello, I want to load a dump from an livecode app but i don’t know how to do it. I’ve tried : answer file « Your dump :" put "source " & quote & it & quote into tSQL revExecuteSQL tDatabaseID, tSQL Without success. Any ideas ? Thanks ___

Re: Mysql load dump

2018-02-14 Thread Ludovic THEBAULT via use-livecode
> Le 14 févr. 2018 à 18:18, Mike Bonner via use-livecode > a écrit : > > DOH, I see it in the subject now. > > If you can get to a command line where the db server resides, you can use > the mysql client to do the import, or if phpmyadmin is available, you can >

Re: Mysql load dump

2018-02-14 Thread Ludovic THEBAULT via use-livecode
> Le 14 févr. 2018 à 17:12, Mike Bonner via use-livecode > a écrit : > > If this is sqlite, you might be able to use the .read dot command.. (note > the nearly invisible period that begins .read) > > Untested, but this might work. > > put "path/to/dump.sql"

Re: Execute multiple MySQL commands

2018-02-08 Thread Ludovic THEBAULT via use-livecode
> Le 8 févr. 2018 à 16:34, Bob Sneidar via use-livecode > a écrit : > > I thought I read somewhere that the LC API does not support multiple > statements? > > Bob S Ok, thanks ! ___ use-livecode mailing list

WordOut : Where to put the license key?

2018-06-21 Thread Ludovic THEBAULT via use-livecode
Hello, I’ve bought WordOut with a bundle. I’ve a licence key, but I don't know where to put it. Thanks for your help ! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Binary Rejected!

2018-08-24 Thread Ludovic THEBAULT via use-livecode
> Le 24 août 2018 à 08:15, Dan Friedman via use-livecode > a écrit : > > Ludivuc, > > Thanks for the advice! I also found an LiveCode Lesson on this very topic. > http://lessons.livecode.com/m/4069/l/881992-creating-a-custom-plist >

Re: Binary Rejected!

2018-08-23 Thread Ludovic THEBAULT via use-livecode
> Le 24 août 2018 à 07:48, Dan Friedman via use-livecode > a écrit : > > Hello, > > My recent iOS app uploaded to Apple was rejected because the dialog asking > for access to your location didn’t say why the app wanted to use location > services. Apple said, “We noticed that your app

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-21 Thread Ludovic THEBAULT via use-livecode
> Le 20 août 2018 à 22:36, J. Landman Gay via use-livecode > a écrit : > > On 8/19/18 11:11 PM, Ludovic THEBAULT via use-livecode wrote: >> But i found i can get the « real » top and bottom with : round((item 4 of >> the screenrect*the systemscale)/2)-theight //

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-19 Thread Ludovic THEBAULT via use-livecode
> Le 18 août 2018 à 20:32, Richard Gaskin via use-livecode > a écrit : > > Ludovic THEBAULT wrote: > > > How get the « real » rect of the stack ? > > Without fullScreenMode it's as simple as: > >get the rect of this stack > > FullScreenMode makes handling dynamic layout details

fullscreenmode and rect of a substack on mobile device ?

2018-08-18 Thread Ludovic THEBAULT via use-livecode
Hello, I’ve a stack for phone and a substack for tablet (with iPad ratio, 1024*768). i use the fullscreenmode to « show all » On android tablet, the ratio height/width is sometimes very different from iPad. I tried to change the height of the substack before open it but with no luck : // in the

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-23 Thread Ludovic THEBAULT via use-livecode
> Le 22 août 2018 à 22:24, J. Landman Gay via use-livecode > a écrit : > > On 8/22/18 3:13 PM, J. Landman Gay via use-livecode wrote: >> But the stack should still fill the screen and it doesn't. > > This will resize the stack the same way as your "adapt" handler does, so you > can eliminate

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-30 Thread Ludovic THEBAULT via use-livecode
> Le 30 août 2018 à 17:14, Sannyasin Brahmanathaswami via use-livecode > a écrit : > > Ludovic > > Can you copy that whole handler to the list? > > round((item 4 of the screenrect*the systemscale)/2)-theight // +theight > > only seems partial? Hello, You can download my test stack here :

Re: 3WDevolution question

2018-09-08 Thread Ludovic THEBAULT via use-livecode
> Le 8 sept. 2018 à 18:03, Mark Wieder via use-livecode > a écrit : > > On 09/07/2018 10:20 PM, Brian Milby via use-livecode wrote: > >>> Mac is somewhat different. If you click the maximize control then you go >> into full screen mode for that window (no title bar, no menu, no dock). >>

Re: App rejected because of camera permission modal alert!

2018-03-16 Thread Ludovic THEBAULT via use-livecode
> Le 13 mars 2018 à 22:07, Ralph DiMola via use-livecode > a écrit : > > Hey William, > > > > OK, I see the problem. This will require you to modify the plist files in the > LiveCode app bundle. > Hello, My app was also rejected for localization

Re: App rejected because of location permission modal alert!

2018-03-16 Thread Ludovic THEBAULT via use-livecode
> Le 16 mars 2018 à 17:41, Ludovic THEBAULT via use-livecode > <use-livecode@lists.runrev.com> a écrit : > > > My app was also rejected for localization permission. > But in the settings.plist file there is no reference to localion…

Re: App rejected because of location permission modal alert!

2018-03-16 Thread Ludovic THEBAULT via use-livecode
> Le 16 mars 2018 à 17:52, panagiotis merakos via use-livecode > a écrit : > > Hi Ludovic, > > For changing the location-related description in the plist, see comment 11 > in this report: > > http://quality.livecode.com/show_bug.cgi?id=19780 > > Best, > Panos

Re: App rejected because of camera permission modal alert!

2018-03-16 Thread Ludovic THEBAULT via use-livecode
> Le 16 mars 2018 à 17:58, J. Landman Gay via use-livecode > a écrit : > > You can put customized copies of the manifest into the Copy Files pane of the > standalone settings and it will override the default. I think it should work > with plist files too. Good

Re: Apple iOS App Rejection because Location Usage String is too Generic

2018-03-24 Thread Ludovic THEBAULT via use-livecode
> Le 24 mars 2018 à 07:38, panagiotis merakos via use-livecode > a écrit : > > Hi Ralph, > > These are set while building the standalone. See comment 11 here > https://quality.livecode.com/show_bug.cgi?id=19780 for a workaround. > > Best, > Panos > — It worked

Re: Color a graphic on a datagrid

2018-03-03 Thread Ludovic THEBAULT via use-livecode
> Le 3 mars 2018 à 00:27, zryip theSlug via use-livecode > a écrit : > > We have nothing helpful for accomplishing that in DGH. But having a > look to the ColumnControlOfIndex function in the datagrid API could be > helpful: >

Color a graphic on a datagrid

2018-03-02 Thread Ludovic THEBAULT via use-livecode
Hello, I want to do something similar to http://lessons.livecode.com/m/datagrid/l/7332-how-can-i-colorize-individual-lines-in-a-table but i want to « automatically » change the color of a graphic (in col 1) in a row only when there is some data in this row (in col 10). I can't get the value

Re: Color a graphic on a datagrid

2018-03-02 Thread Ludovic THEBAULT via use-livecode
> Le 2 mars 2018 à 17:24, Ludovic THEBAULT via use-livecode > <use-livecode@lists.runrev.com> a écrit : > > Hello, > > I want to do something similar to > http://lessons.livecode.com/m/datagrid/l/7332-how-can-i-colorize-individual-lines-in-a-table > > but i

Android manifest merging

2018-10-17 Thread Ludovic THEBAULT via use-livecode
Hello, With Livecode 9, according the releasing notes : "Since the merging mechanism is more general, enables multiple manifests and does not require users to update template manifests with new template replacement strings, this feature has been removed - instead any AndroidManifest.xml files

Browser widget and mailto link.

2018-10-30 Thread Ludovic THEBAULT via use-livecode
Hello, is it normal that email links (mailto:x...@xx.com »>my mail) do not work in a web page displayed with the browser widget? Livecode 9.01 - tested on iOS. Thanks ! Ludovic ___ use-livecode mailing list

Re: Browser widget and mailto link.

2018-10-31 Thread Ludovic THEBAULT via use-livecode
> Le 30 oct. 2018 à 19:08, Ludovic THEBAULT via use-livecode > a écrit : > > Hello, > > is it normal that email links (mailto:x...@xx.com > <mailto:x...@xx.com> »>my mail) do not work in a web page displayed with > the browser widget? > Livecode 9.01 - t

Widget Browser, useragent and iOS

2018-11-13 Thread Ludovic THEBAULT via use-livecode
Hello, It seems we cannot set the user agent of the widget browser on iOS. Any workaround ? Thanks ! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Reading PDF Form Data in LiveCode?

2018-10-10 Thread Ludovic THEBAULT via use-livecode
On macOS, try PDFzone (on the App Store). Great app. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-31 Thread Ludovic THEBAULT via use-livecode
> Le 30 août 2018 à 20:44, Ludovic THEBAULT via use-livecode > a écrit : > > You can download my test stack here : > https://www.dropbox.com/s/iwwm2syiqzqamtg/testsubstack2.livecode?dl=1 > > Note : my script doesn’t work properly : i tested it on an android tab

custom plist

2018-09-19 Thread Ludovic THEBAULT via use-livecode
Hello, I use the http://lessons.livecode.com/m/4069/l/881992-creating-a-custom-plist to create a custom info.plist for my app. But i need to modify it for each build to change CFBundleVersion and CFBundleShortVersionString. How let the standalone builder modify the CFBundleVersion and

Re: [ANN] LiveCode Advanced Application Architecture book available

2018-11-19 Thread Ludovic THEBAULT via use-livecode
> Le 19 nov. 2018 à 15:28, Andre Alves Garzia via use-livecode > a écrit : > > Aloha Friends, > > There was a mistake in the final book generation, a chapter was missing. I've > issued a two new updates today to fix this. All the readers should have > received an email about it. If you

iOS 12 and SDK

2018-09-18 Thread Ludovic THEBAULT via use-livecode
Hello, My app (built with Livecode 8) also crash on IOS 12. So, i built it with LC 9.01 and work on my device on iOS 12. I submitted it, but Application Loader rejected it : ERROR ITMS-90725: "SDK Version Issue. This app was built with the iOS '10.2' SDK. All iOS apps submitted to the App Store

Re: iOS 12 and SDK

2018-09-18 Thread Ludovic THEBAULT via use-livecode
> Le 19 sept. 2018 à 06:55, Monte Goulding via use-livecode > a écrit : > > > >> On 19 Sep 2018, at 2:50 pm, Ludovic THEBAULT via use-livecode >> wrote: >> >> My app (built with Livecode 8) also crash on IOS 12. >> So, i built it with LC 9

Re: Data grid : show an button in a column only if there is an email in other column

2019-02-21 Thread Ludovic THEBAULT via use-livecode
> Le 20 févr. 2019 à 17:58, zryip theSlug via use-livecode > a écrit : > > Ludovic, > > Try: > > on FillInData pData > >if pData["email"] <> "" then show btn "sendmail" of me > >else hide btn "sendmail" of me > > end FillInData > As i use Table datagrid, pData is just

Data grid : show an button in a column only if there is an email in other column

2019-02-20 Thread Ludovic THEBAULT via use-livecode
Hello, I have an address table (data grid) including an "email" column. An other column contains a button to send an email. I want to hide this button if the line does not contain an email. I put this script in the behavior of the button column : on FillInData pData if pData["email"]

Re: add file extension share for iOS app

2019-02-22 Thread Ludovic THEBAULT via use-livecode
> Le 22 févr. 2019 à 10:06, Matthias Rebbe via use-livecode > a écrit : > > Hi, > > i don´t know if it is the correct expression in the topic. > > I need the possibility to share an email attachment on iOS with my iOS app. > I want to be able to open a .txt file received by email on iOS with

Re: add file extension share for iOS app

2019-02-22 Thread Ludovic THEBAULT via use-livecode
> Le 22 févr. 2019 à 12:05, Matthias Rebbe via use-livecode > a écrit : > > Ludovic, > > thank you very much. I will try today evening. But how will i handle the file > in the App. > Can i use the $1 variable for this like in the desktop apps? Or is there a > special message that takes care

Save a file on iOS Files app ?

2019-03-16 Thread Ludovic THEBAULT via use-livecode
Hello, It is possible to save a file on an iPhone which can be accessed by the iOs Files app (at least in the On My Phone folder) ? Thanks ! https://support.apple.com/en-au/HT206481 ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Android and attachments

2019-03-15 Thread Ludovic THEBAULT via use-livecode
I've been told some bugs when you want to share a file (by « mobileComposeMail ») from an application designed with Livecode (9.02) under Android : With Google Drive, a zip file is saved without a name and extension but remains valid. With Outlook, the same. But with another application, no

Re: Android and attachments

2019-03-15 Thread Ludovic THEBAULT via use-livecode
> Le 15 mars 2019 à 09:24, Ludovic THEBAULT via use-livecode > a écrit : > > I've been told some bugs when you want to share a file (by « > mobileComposeMail ») from an application designed with Livecode (9.02) under > Android : > With Google Drive, a zip file is

Re: multi line Livecode field uploaded to MySQL

2019-02-16 Thread Ludovic THEBAULT via use-livecode
> Le 16 févr. 2019 à 09:17, Tim Selander via use-livecode > a écrit : > > Thank you for your reply, but I haven't gotten it working yet. > > The code in my first post was from my working stack. Here is what I have from > my non-working stack after re-writing to follow your instructions: >

Re: multi line Livecode field uploaded to MySQL

2019-02-15 Thread Ludovic THEBAULT via use-livecode
> Le 16 févr. 2019 à 07:59, Tim Selander via use-livecode > a écrit : > > I have a routine to take data from fields on a card and upload to a mysql > database. Has worked well for years, got the original script off the Livecode > learning site. > --- > # Construct SQL > put

Notarize your app

2019-05-31 Thread Ludovic THEBAULT via use-livecode
Hello, I think that could help ! https://latenightsw.com/sd-notary-notarizing-made-easy/ ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Android and external documents crash

2019-06-06 Thread Ludovic THEBAULT via use-livecode
Hello One user of my app report me a bug when my script call put specialfolderpath("external documents") In the standalone settings the "Write external storage" option is set to true. With all android devices I have, I’ve no bug. But all my device have an external slot (but even with no card in

Re: Mobile - Open file dialog?

2019-05-13 Thread Ludovic THEBAULT via use-livecode
> Le 14 mai 2019 à 00:57, Matthias Rebbe via use-livecode > a écrit : > > Hi, > > i am currently porting a desktop app to mobile. In this app the user will be > able to save and open PDF files in the documents folder. > For opening a file In desktop "answer file" is the way to do it. But how

Download file from widget browser ?

2019-05-22 Thread Ludovic THEBAULT via use-livecode
Hello, If I go on a website to download text files within the widget browser, where I retrieve the downloaded file ? I cannot use the put URL() because there is a verification of the user agent to download the files. Thanks ! ___ use-livecode

Re: repeat with times

2019-05-21 Thread Ludovic THEBAULT via use-livecode
> Le 21 mai 2019 à 20:24, Andrew Bell via use-livecode > a écrit : > > I'm excited to try some of the new features of LC 9.5 but found a regression > that has me dead in the water. Went to file a bug report, but 9.0.5 is the > newest version listed. (I realize the team is busy in San Jose

Re: Mobile - Open file dialog?

2019-05-14 Thread Ludovic THEBAULT via use-livecode
> Le 14 mai 2019 à 15:39, Matthias Rebbe via use-livecode > a écrit : > > Hi Ludovic, > > thanks for you answer, but i think a was not precise enough. > > The app allows to saves PDF files. Not only one, but many. The folder to > which the files are saved is static set to the documents

Re: Mobile - Open file dialog?

2019-05-14 Thread Ludovic THEBAULT via use-livecode
> Le 14 mai 2019 à 15:53, Klaus major-k via use-livecode > a écrit : > > Bonjour Ludovic, > >> Am 14.05.2019 um 15:46 schrieb Ludovic THEBAULT via use-livecode >> : >> >> >>> Le 14 mai 2019 à 15:39, Matthias Rebbe via use-livecode >

array and revExecuteSQL

2019-05-08 Thread Ludovic THEBAULT via use-livecode
hello when you use array with revExecuteSQL like : revExecuteSQL, dbID, tSQL, "tarray" can we use array wth keys as text and not number : tarray["latitude"] vs tarray[1] i’ve some bug with first syntax. Thanks for your light ! ___ use-livecode

Re: IPhone geometry

2019-11-30 Thread Ludovic THEBAULT via use-livecode
> Le 30 nov. 2019 à 18:25, Colin Holgate via use-livecode > a écrit : > > I think they would, but the iPhone 11 screen is the same ratio of the iPhone > X screen. If you had successfully submitted for iPhone X, it should be ok for > iPhone 11. > > It only needs to be background though, but

Mysql library

2020-03-02 Thread Ludovic THEBAULT via use-livecode
Hello, I need to connect to a remote mysql database which need a client that support authentication protocol. I cannot tell the server to use the older password hashing algorithm. How do it ? (I’ve Livecode 9.6 indy). Thanks ! Ludovic ___

Re: Mysql library

2020-03-02 Thread Ludovic THEBAULT via use-livecode
> Le 2 mars 2020 à 17:44, matthias rebbe via use-livecode > a écrit : > > Hi, > > the people at HostM created a free API solution which allows a LC Desktop > or Mobile app to communicate over https with a Maria DB (compatible with > MySQL) using Livecode Server. > > You can download

Re: Focus on customproperty inspector

2020-01-11 Thread Ludovic THEBAULT via use-livecode
> Le 11 janv. 2020 à 15:45, Klaus major-k via use-livecode > a écrit : > > Bonjour Ludovic, > >> Am 11.01.2020 um 15:38 schrieb Ludovic THEBAULT via use-livecode >> : >> >> Hello, >> >> With livecode 9.6 I have a strange behav

Focus on customproperty inspector

2020-01-11 Thread Ludovic THEBAULT via use-livecode
Hello, With livecode 9.6 I have a strange behavior, when the custom property inspector is open, and the script window is open too, the focus shifts from time to time to the property title (which I previously displayed). If I don't pay attention, I replace the property title with the script

Missing icon on iOS app

2020-01-18 Thread Ludovic THEBAULT via use-livecode
Hello, After creating an iOS application with Livecode 9.6dp2, the icons are missing in the bundle (and also their reference in info.plist). So, I’ve tested with Livecode 9.04, and it’s the same ! I am on macOS 10.14. Xcode uptodate (maybe the guilty ?) Strange, no ? I am the only one ?

Re: Missing icon on iOS app

2020-01-18 Thread Ludovic THEBAULT via use-livecode
> Le 18 janv. 2020 à 18:18, Ludovic THEBAULT via use-livecode > a écrit : > > Hello, > > After creating an iOS application with Livecode 9.6dp2, the icons are missing > in the bundle (and also their reference in info.plist). > > So, I’ve tested with Livec

Re: Error in evaluatejavascript with widget browser only on iOS and Livecode > 9.06

2020-04-17 Thread Ludovic THEBAULT via use-livecode
> Le 17 avr. 2020 à 17:41, Ludovic THEBAULT via use-livecode > a écrit : > > > >> Le 17 avr. 2020 à 16:55, panagiotis merakos via use-livecode >> a écrit : >> >> Hello Ludovic, >> >> Could you please file a bug report and include a (id

Re: Error in evaluatejavascript with widget browser only on iOS and Livecode > 9.06

2020-04-17 Thread Ludovic THEBAULT via use-livecode
> Le 17 avr. 2020 à 16:55, panagiotis merakos via use-livecode > a écrit : > > Hello Ludovic, > > Could you please file a bug report and include a (ideally simple) sample > stack, so as we investigate asap? > > Kind regards, > Panos Ok. So, I wanted to remove all scripts and cards

Error in evaluatejavascript with widget browser only on iOS and Livecode > 9.06

2020-04-17 Thread Ludovic THEBAULT via use-livecode
Hello, I’ve a strange error : I have an application where you can change the GPS coordinates from a marker on a map, in a browser widget. For this I use the code "myJSHandler" which allows to retrieve in Livecode the GPS values of the map thanks to javascript. The code works fine on desktop,

Re: Error in evaluatejavascript with widget browser only on iOS and Livecode > 9.06

2020-04-17 Thread Ludovic THEBAULT via use-livecode
> Le 17 avr. 2020 à 16:37, Brian Milby via use-livecode > a écrit : > > Have you tried without the wait? > > Thanks, Hello, Yes, without the wait, the error is always here. ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Android native field widget and "return"

2020-08-18 Thread Ludovic THEBAULT via use-livecode
Hello, How handle the returnkey with the android native field widget ? I’ve tried imputReturnKey ans returninfield without success. Thanks ! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Apple Transporter for iOS uploads?

2020-07-02 Thread Ludovic THEBAULT via use-livecode
> Le 3 juil. 2020 à 01:04, J. Landman Gay via use-livecode > a écrit : > > On 7/2/20 3:58 PM, Graham Samuel via use-livecode wrote: >> My iOS deployment issues seem endless. It is dispiriting. > I uploaded an update with Transporter last night without problem. But you can still use the

AppstoreConnect : no build available

2020-06-19 Thread Ludovic THEBAULT via use-livecode
Hello, I’ve submitted an update of my app on the store. I got these problems (which are the same has previous submitting) : > We identified one or more issues with a recent delivery for your app, […] > Your delivery was successful, but you may wish to correct the following > issues in your

Re: AppstoreConnect : no build available

2020-06-21 Thread Ludovic THEBAULT via use-livecode
> Le 21 juin 2020 à 21:35, J. Landman Gay via use-livecode > a écrit : > > On 6/20/20 12:52 AM, Ludovic THEBAULT via use-livecode wrote: >> Nothing new this morning. >> But we are not alone ! > > I had a series of unhelpful responses to Apple dev support

Re: AppstoreConnect : no build available

2020-06-19 Thread Ludovic THEBAULT via use-livecode
> Le 19 juin 2020 à 21:49, J. Landman Gay via use-livecode > a écrit : > > I'm having the same problem. Submitted a verified app last night and got an > email immediately that it had completed processing. But when I log into App > Store Connect it is not available. If I look in the Test

Re: SHELL command works in Terminal but not via SHELL in LC

2020-06-03 Thread Ludovic THEBAULT via use-livecode
> Le 3 juin 2020 à 13:13, Klaus major-k via use-livecode > a écrit : > > Hi friends, > > maybe someone has a brilliant hint for me! :-) > > A customer of mine has installed ffmpeg on his mac via Terminal: > 1. google: homebrew > 2. terminal: brew install ffmpeg > or whatever the command

Re: breakpoint causes 3 second delay then exit to top

2020-07-17 Thread Ludovic THEBAULT via use-livecode
> Le 17 juil. 2020 à 13:52, Bernard Devlin via use-livecode > a écrit : > > This is mystifying in so many ways. I've seen this a few times and I'm at > a loss to explain it. It's LC 9.5.1 on Windows 10. > > *When the code gets to the above breakpoint, the debugger exits to top. It > takes

savingMobileStandalone and files

2020-07-26 Thread Ludovic THEBAULT via use-livecode
Hello, I have an application I'm compiling for Android and iOS. For Android, I have to integrate compressed files, not for IOS (iOS applications can be larger in size) I use the savingMobileStandalone function to indicate to integrate either compressed or uncompressed files: switch

Native scroller and iPhone X and >

2021-01-09 Thread Ludovic THEBAULT via use-livecode
Hello and happy new year ! I’ve tested my app on an iPhone X and the height of the native scrollers are not corrects. It seems that this is due to the notch. The scrolling area is smaller than needed. Il i test the same app on an iPhone < X (without notch) it’s ok. What I missed ? Here the

Re: Swipe gesture script on datagrid

2021-01-19 Thread Ludovic THEBAULT via use-livecode
> Le 19 janv. 2021 à 08:37, Phil Davis via use-livecode > a écrit : > > Would the dgProp["left swipe control"] of grp "yourDG" help? At least that > might let you change the default trash can to some other control (maybe to a > group that contains your 2 buttons?). If you get that far,

Test on android Simulator : app has stopped

2021-01-24 Thread Ludovic THEBAULT via use-livecode
Hello, I can’t test apps on the android simulator, install are ok, but when the app launch (even a simple test stack), the app quit suddenly. I’ve updated Android Studio, SDK, SDK tools. All is uptodate. I reselect the sdk in the livecode prefs. I checked all in this lesson.

Re: Test on android Simulator : app has stopped

2021-01-24 Thread Ludovic THEBAULT via use-livecode
> Le 24 janv. 2021 à 10:38, Ludovic THEBAULT via use-livecode > a écrit : > > Hello, > > I can’t test apps on the android simulator, install are ok, but when the app > launch (even a simple test stack), the app quit suddenly. > > I’ve updated Android

Re: Swipe gesture script on datagrid

2021-01-18 Thread Ludovic THEBAULT via use-livecode
> Le 19 janv. 2021 à 07:28, Ludovic THEBAULT a > écrit : > > Hello, > > How edit the script of a swipe gesture control ? > I want to add two buttons to the right swipe control, it’s ok for appearance > but I cannot find where to edit the script. > > Is it even possible? I dug into the

Swipe gesture script on datagrid

2021-01-18 Thread Ludovic THEBAULT via use-livecode
Hello, How edit the script of a swipe gesture control ? I want to add two buttons to the right swipe control, it’s ok for appearance but I cannot find where to edit the script. Is it even possible? PS : i have datagrid helper plugin 2.5. Thanks !

Re: building standalone FAILS with German Umlaute in app name

2021-06-15 Thread Ludovic THEBAULT via use-livecode
> Le 15 juin 2021 à 15:19, Tiemo via use-livecode > a écrit : > > Hello, > > > > macOS 11.2.3, LC 9.6.1 and 9.6.2 > > > > when the app name has German Umlaute, building a standalone fails with the > error: > > “Adding ad-hoc signature failed. … Too many open files in subcomponent >

Test

2021-02-10 Thread Ludovic THEBAULT via use-livecode
I can send but I don't receive anything! You can see the list here : http://lists.runrev.com/pipermail/use-livecode/2021-February/date.html Here the explanation : I missed an "use-livecode-requ...@lists.runrev.com

test

2021-02-10 Thread Ludovic THEBAULT via use-livecode
Hello, I haven't received any messages for a week now. Strange, no ? Ludovic ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Random crash when building standalone

2021-09-03 Thread Ludovic THEBAULT via use-livecode
Hello, When I build a Windows or macOS standalone, I sometimes have several alerts that concern the "livecode's stacks" ("answer dialog", "print chooser" ...) that are saved in the standalone (but I don't want them to be!) and that conflict with the original stacks. And rarely it ends with a

Re: iOS 15 - Xcode version

2021-09-24 Thread Ludovic THEBAULT via use-livecode
> Le 25 sept. 2021 à 00:19, Marty Knapp via use-livecode > a écrit : > > > But now I can no longer use Photoshop CS3! It’s probably 10 years old so it > had a good long run. Now to find a replacement as I don’t want to pay $20 a > month for that… > Hello ! Try Affinity Photo, really

Hilite color of an android native field

2022-02-16 Thread Ludovic THEBAULT via use-livecode
Hello, Is there a way to change the hilite color of an android native field widget when it is focused ? Thanks ! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: New user

2022-03-30 Thread Ludovic THEBAULT via use-livecode
> Le 30 mars 2022 à 15:50, Guillaume Hédieu via use-livecode > a écrit : > > Hi everyone, > > Just a message to say hello. I'm new to Livecode. First of all, please > apologize for my english, it's not my native language. > Alors bienvenue ! ;-) Ludovic

Install app on iOS 9 : still possible ?

2023-09-07 Thread Ludovic THEBAULT via use-livecode
Hello, I’ve 2 iPad 2. I want to make some little app for my school. With Livecode 9.6.10, apps are not compatible. Which version of Livecode can be used to create compatible apps? Thanks. ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: Compiling for iOS : something wrong with Xcode and Sonoma

2023-10-11 Thread Ludovic THEBAULT via use-livecode
> Le 10 oct. 2023 à 19:14, Ludovic THEBAULT via use-livecode > a écrit : > > Hello, > > Is livecode uptodate is compatible with Sonoma ? > When I try to compile for iOS I get this error : > > There was an error while saving the standalone application linkin

Re: Sqlite and Monterey on M1

2022-06-08 Thread Ludovic THEBAULT via use-livecode
Hello, These were file's attributes that were blocking the writing (noticed by an @ with an ‘ls’). They had to be removed with a "sudo xattr -c ..." (deleting only the com.apple.quarantine was not enough) HTH ! > Le 15 mai 2022 à 17:30, Ludovic THEBAULT a > écrit : > > > >> Le 12 mai

ChatGPT and Livecode

2022-12-08 Thread Ludovic THEBAULT via use-livecode
Hello all, Chatgpt knows Livecode and can propose code on a simple description, but it remains to be improved :-) Example : "Write a code for Livecode to read line by line a long text file. » ChatGPT : > on openCard > put "Enter the path to the text file:" > answer file > set

Re: Training the AI to write better LiveCode

2023-01-20 Thread Ludovic THEBAULT via use-livecode
Hello, Can anyone verify that the corrections I reported to ChatGPT have been taken into account? I asked ChatGPT how to geolocate, but it gave me several bad suggestions for commands that didn't exist : - mobileControlCreate « geoControl" - put mobileGetGPS() - put geolocation() - put

  1   2   >