Google maps and fullscreenmode

2015-11-14 Thread Ludovic THEBAULT
Hello, I want to display google maps on an mobile app. My app use the fullscreenmode property to display on any device. But on "retina" screens, my map is very smaller (in the html code of the google map page, we need to put the width and height in pixels). Even if i adjust the pixel size of the

Re: LiveCode for the Hobbyists

2016-02-28 Thread Ludovic Thebault
On Sun, 28 Feb 2016 11:32:45 -0700, Roger Guay wrote: > Excellent point! What would you think about an inexpensive LC license > for non-profits and free apps? I dream of that ! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit t

Re: Open source, closed source, and the value of code

2016-02-29 Thread Ludovic Thebault
On Mon, 29 Feb 2016 22:05:51 -0800 (PST), Alejandro Tejada wrote: > Hi all, > > I have read most of this message thread, > so please pardon me if someone has > proposed this before: > > Why not publish your Apps for iOS > using a Publisher Partner? > > Maybe an iOS Publisher Partner > selected

Suddenly : linking for arm failed

2016-03-21 Thread Ludovic THEBAULT
Hello, This evening, i compile a standalone for the app store. It’s work. I realized i forgot a little script so i made my change on the stack and recompile. And i got this error message : Linkinng for arm(arm64) failed with id: warning: object file ([…]/device-9_2/standalone) was built for newer

min() and array

2016-05-04 Thread Ludovic THEBAULT
Hello, With the new 8.0. It is normal that script return 0 ? repeat with i=1 to 5 put 10 + i into tarray[i][v] end repeat put min(tarray[v]) not tested in any other version. Thanks. ___ use-livecode mailing list use-livecode@lists.runrev.com Plea

Re: min() and array

2016-05-04 Thread Ludovic THEBAULT
> Le 4 mai 2016 à 21:46, Paul Dupuis a écrit : > > On 5/4/2016 2:47 PM, Ludovic THEBAULT wrote: >> repeat with i=1 to 5 >> put 10 + i into tarray[i][v] >> end repeat >> put min(tarray[v]) > > You problem is with the second index on the array. >

Replace accents

2016-05-10 Thread Ludovic THEBAULT
Hello, This little scrip don't word with Livecode 7 and 8. I guess this is because Livecode work directly in unicode (the script work with Livecode 6). But how handle it in my script ? put "áàâäãåÄÅÀÃéèêëÊËÈÉíìîïÍÎÏÌóòôöõÓÔÒÕÖúùûüÚÛÙÜÑñçÇ'" into accent put "aaoOuu

Re: Replace accents

2016-05-10 Thread Ludovic THEBAULT
Le 10 mai 2016 à 15:14, John Dixon a écrit : > err... it does work under LC8.. just tried it > MacBook Pro, El Capitan, OSX 10.11.4 If the text is typed with Livecode, it's work, but with a text opened from a file (or the list of files in a folder, like i use in this script, it doesn't work)

Re: Replace accents

2016-05-10 Thread Ludovic THEBAULT
Le 10 mai 2016 à 16:31, Mark Waddingham a écrit : > normalizeText(it, "NFC") Great ! Many Thanks ! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences

Change mobile settings

2016-05-14 Thread Ludovic THEBAULT
Hello, Until now, i’ve used a little stack to update the mobile settings in the Livecode application (/Applications/LiveCode Indy 7.1.4.app/Contents/Tools/Runtime/iOS/Device-8_2/Settings.plist) for example to indicate my app as French. With the 7.14 version, this stack doesn’t work because « i

Re: Change mobile settings - file association in your iOS or Android app

2016-05-16 Thread Ludovic THEBAULT
> Le 14 mai 2016 à 18:49, Ludovic THEBAULT a > écrit : > > Hello, > > Until now, i’ve used a little stack to update the mobile settings in the > Livecode application (/Applications/LiveCode Indy > 7.1.4.app/Contents/Tools/Runtime/iOS/Device-8_2/Settings.plist) for e

Re: Change mobile settings - file association in your iOS or Android app

2016-05-16 Thread Ludovic THEBAULT
> Le 16 mai 2016 à 16:58, Thierry Douez a écrit : > > Ludovic, > > Try this: > > Copy the template plist from out of LC. > > Edit it the way you like. > . > Name it Info.plist and add it to copy files in Standalone settings. > > I never did it but I think I've seen this trick in this list a

Re: Open in...

2016-06-18 Thread Ludovic THEBAULT
> Le 18 juin 2016 à 17:58, Glen Bojsza a écrit : > > There are many iPad apps that when I receive a particular file via email > that I am given a choice which app I can open it with. > > My app uses text files and sqlite files and I want the users to be able to > email their files to others. >

Re: Open in...

2016-06-18 Thread Ludovic THEBAULT
And in your app, add in your stack : on urlWakeUp pURL mobileBusyIndicatorStart "square", « Importation" end URLWakeup This post help me to do this. http://forums.livecode.com/viewtopic.php?f=75&t=18775 ___ use-livecode mailing list use-livecode@list

Live code and update a mysql table

2016-06-25 Thread Ludovic THEBAULT
Hello, I want to update a column in a mysql table. here my script : put "UPDATE mytable SET myText = ':1' WHERE id =:2 » into tSQL put fld "myText" into theText put 2 into t_id revExecuteSQL gConnectionID, tSQL, « theText", « t_id" Even if theText = "Tralala", i got only ":1" in my table in the

Re: Live code and update a mysql table

2016-06-25 Thread Ludovic THEBAULT
> Le 25 juin 2016 à 14:19, Mike Bonner a écrit : > > Remove the ticks around the one. Your placeholder needs to be :1, with the > extra ticks you're turning it into a string. (I'm surprised that it even > works) Thanks ! It work now. ___ use-live

Re: [SQL] placeholders work for SQLite but not for mySQL

2016-08-06 Thread Ludovic THEBAULT
> Le 6 août 2016 à 11:07, Kay C Lan a écrit : > > Thanks Erik, > > yes that's what I'm doing as a workaround at the moment, I test the > variable and see if it's empty, if not I use place holders and execute > the original statement, if it is empty, then I've written out the > longhand statemen

Re: [SQL] placeholders work for SQLite but not for mySQL

2016-08-08 Thread Ludovic THEBAULT
> Le 8 août 2016 à 13:36, Kay C Lan a écrit : > Unfortunately: > > put null into pValue > > worked fine for SQLite, but I still got the exact same mySQL ERROR = > Incorrect integer value: '' for column 'postcode' at row 1 > After the revexecuteSQL do a : if pValue = empty then ## (or null)

Re: 8.1.1 RC 1 - iOS Standalone Build Failure

2016-09-27 Thread Ludovic THEBAULT
> Le 26 sept. 2016 à 19:49, panagiotis merakos a écrit : > > Hi Brahmanathaswami, > > This error happens because in your existing stack you have set the min ios > version to iOS 5.1.1, which is not supported in LC 8.1.1 RC1. Just set the > minimum iOS version to 6.0 in the standalone app settin

Re: 8.1.1 RC 1 - iOS Standalone Build Failure

2016-09-27 Thread Ludovic THEBAULT
> Le 28 sept. 2016 à 07:09, Ludovic THEBAULT a > écrit : > > >> Le 26 sept. 2016 à 19:49, panagiotis merakos a écrit : >> >> Hi Brahmanathaswami, >> >> This error happens because in your existing stack you have set the min ios >> version to i

iOS 10 and native scroller

2016-09-27 Thread Ludovic THEBAULT
Hello, to have a native scroller on field list i’ve made this : put my long field in a group set the size of the group and lock it it worked perfectly until iOS 10. Now I see my text beyond group boundaries. Why ? thanks ___ use-livecode mailing

Reset the foreground color

2016-10-04 Thread Ludovic THEBAULT
Hello, I've a field where i change color of some chars by script. If i want to "reset" the color of all my text this code doesn't work : set the foregroundcolor of fld "myText" to black I really need to do a repeat on all chars ??? Thanks ___ use-liv

Re: Reset the foreground color

2016-10-04 Thread Ludovic THEBAULT
Le 4 oct. 2016 à 19:15, Klaus major-k a écrit : > Bonsoir Ludovic, > >> Am 04.10.2016 um 19:06 schrieb Ludovic THEBAULT >> : >> >> Hello, >> >> I've a field where i change color of some chars by script. >> If i want to "reset&quo

Re: iOS rejection - requesting services

2016-12-20 Thread Ludovic THEBAULT
> Le 20 déc. 2016 à 19:28, Andrew Bell a écrit : > > I just downloaded the Orbitz app the other day and saw it had a special > message about how it used your coordinates when allowing Location Services. > Didn't know how they changed that message from the default, but thought it > was cool. >

Externals, Livecode and MacOS : problems

2016-12-25 Thread Ludovic THEBAULT
hello, I need to compile an « old » and big stack (created six years ago). I am under MacOS X 10.11 With Livecode 8.12 : the standalone is created without errors and work on MacOS X 10.11 but crash on 10.6 (because of the external tsnet, bug 19035

Re: Externals, Livecode and MacOS : problems

2016-12-26 Thread Ludovic THEBAULT
> Le 26 déc. 2016 à 08:21, Ludovic THEBAULT a > écrit : > > hello, > > I need to compile an « old » and big stack (created six years ago). > I am under MacOS X 10.11 > > With Livecode 8.12 : the standalone is created without errors and work on > MacOS X 10.11

Re: SQLite and single quote characters

2016-12-28 Thread Ludovic THEBAULT
> Le 28 déc. 2016 à 19:54, Tore Nilsen a écrit : > > I am using my Christmas break to try to teach myself how to use SQLite with > LiveCode. (Hopefully I will be able to teach my students how to use it also, > come January.) In this process I ran into a problem, where the script I used > did

Textcolor on mobile

2015-01-05 Thread Ludovic THEBAULT
Hello Strange problem here : I’ve two scrolling list fields on two differents cards, with the same settings, especially the colors. On the iOS simulator, when i select a line, the hilitecolor is fine, but for one field the text color become white whatever the setting i choose for the textcolor

Re: Keyboardactivated but mobilecontroltarget is empty

2015-02-14 Thread Ludovic THEBAULT
I put the "moving script" in the inputBeginEditing and inputEndEditing of the object. It’s work now. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: h

Re: Release: LiveCode 8.0.0 DP 1

2015-03-12 Thread Ludovic THEBAULT
> Le 12 mars 2015 à 19:40, Fraser Gordon a écrit : > > Hi Matthias, > > On 12 Mar 2015, at 18:34, Matthias Rebbe | M-R-D > wrote: > >> Downloaded and installed the community version now. But it crashes >> immediately after showing the LC ide. >> >> Anything i can do except deleting all Lc

"Open in" for Android

2015-03-16 Thread Ludovic THEBAULT
Hello, To open a file with your app in iOS, i found this thread : http://forums.livecode.com/viewtopic.php?f=75&t=18775 But how do the same for an android app ? Thanks ___ use-livecode mailing li

Re: "Open in" for Android

2015-03-16 Thread Ludovic THEBAULT
> Le 16 mars 2015 à 15:48, Mark Schonewille > a écrit : > > Hi Ludovic, > > You can now enter the custom URL scheme in the standalone builder (or isn't > that what you're looking for?) > Hello, thanks. I want to save a file on the documents folder of my app from an email to avoid using i

Re: "Open in" for Android

2015-03-19 Thread Ludovic THEBAULT
Le 18 mars 2015 à 17:57, Mark Schonewille a écrit : > Hi Ludovic, > > You need to add intent filters to the manifest. More info at > http://stackoverflow.com/questions/3760276/android-intent-filter-associate-app-with-file-extension > > You need to find a way to change the manifest before the

Re: "Open in" for Android

2015-03-19 Thread Ludovic THEBAULT
Le 18 mars 2015 à 17:57, Mark Schonewille mailto:m.schonewi...@economy-x-talk.com>> a écrit : > Hi Ludovic, > > You need to add intent filters to the manifest. More info at > http://stackoverflow.com/questions/3760276/android-intent-filter-associate-app-with-file-extension > >

How get my file from attachment under Android ?

2015-03-21 Thread Ludovic THEBAULT
> Le 19 mars 2015 à 20:39, Ludovic THEBAULT a > écrit : > > > Le 18 mars 2015 à 17:57, Mark Schonewille <mailto:m.schonewi...@economy-x-talk.com>> a écrit : > >> Hi Ludovic, >> >> You need to add intent filters to the manifest. More info at

Plugin to change some settings for mobile devices

2015-05-01 Thread Ludovic THEBAULT
Hello, Here a plugin for Livecode to change some settings for mobile device that not accessible by the standalone settings . Put the file in your plugins folder. At the first update, originals files are saved in a "Saved" folder in your plug-in folder. You can change : For iOS : - the languag

Crash with testflight only ?!

2015-05-04 Thread Ludovic THEBAULT
Hello, Why an app crash at start if it is distributed with Tesflight and not if it is directly installed on the device by iTunes (same device, same code) or in the simulator ? Tested on an iphone and an ipad 2 since i’ve upgraded to Xcode 6.3 (worked before) and Livecode 6.7.5rc2. And there is

Re: Crash with testflight only ?!

2015-05-05 Thread Ludovic THEBAULT
> Le 5 mai 2015 à 08:41, Ludovic THEBAULT a > écrit : > > Hello, > > Why an app crash at start if it is distributed with Tesflight and not if it > is directly installed on the device by iTunes (same device, same code) or in > the simulator ? > Tested on an ipho

Re: Re: Crash with testflight only ?!

2015-05-05 Thread Ludovic THEBAULT
> Le 5 mai 2015 à 09:51, Ludovic THEBAULT a > écrit : > > >> Le 5 mai 2015 à 08:41, Ludovic THEBAULT a >> écrit : >> >> Hello, >> >> Why an app crash at launch if it is distributed with Tesflight and not if it >> is directly install

Re: New License Idea for Hobbyists

2015-07-21 Thread Ludovic THEBAULT
> Le 21 juil. 2015 à 20:08, Roger Guay a écrit : > > Hi Heather, > > How about a $99 per year commercial license for hobbyists who want to build > free apps (no profit)? I’ll be the first to sign up!! > +10 ___ use-livecode mailing list use-liveco

Export snapshot and native controls

2015-10-14 Thread Ludovic THEBAULT
Hello, Livecode 6.77 When i create a snapshot with this script : export snapshot from rectangle theRect of this cd to file… I’ve the correct snapshot but all natives controls are gone ! And if i use this script : export snapshot from rectangle theRect to file… I’ve only the natives controls

Re: Re: Export snapshot and native controls

2015-10-15 Thread Ludovic THEBAULT
> Le 15 oct. 2015 à 17:55, Paul Hibbert a écrit : > > Bill is spot on, try… > > export snapshot from this cd to file tFile as JPEG > > Paul Export snapshot from group … give me a screenshot without native controls just as your solution. It seem i need to fill a bug !

Difference between mobilesensorReading, mobileCurrentLocation and locationChanged

2015-10-17 Thread Ludovic THEBAULT
Hello I’m lost between these 3 methods to get GPS coordinates. Why the dictionary put as example : on locationChanged put mobileCurrentLocation() into theLocation updateMapPosition theLocation -- update the marker on the map showing the current location end locationChanged It is not redo

Re: Helpppppp, LC crashes on opening a project!

2015-10-21 Thread Ludovic THEBAULT
> Le 21 oct. 2015 à 19:30, tkuyp...@telenet.be a écrit : > > I’m using LC Community 7.1 and for the second time in a week LC gives the > cursor of death when I reopen a project! > > The first time I was able to retrieve all code using Bbedit, and I was able > to continue to work, starting all

Why there is a difference between the gps timestamp and "the seconds" ?

2015-10-24 Thread Ludovic THEBAULT
Hello, With mobilecurrentlocation() we can get the timestamp : "the time at which the measurement was taken, in seconds since 1970." if the same time i get "the seconds" ("The seconds function returns the total number of seconds since midnight, January 1, 1970 GMT.), I do not get back the same

How script the widget Switchbutton ?

2015-10-27 Thread Ludovic THEBAULT
Hello, I play with Livecode 8 dp7. Widget are cool but how use it ? If i put a switchbutton on my stack and put this script : on mouseup answer the hilite of me end mouseup nothing happen. I cannot find any example in the doc. Thanks ___ use-live

Re: How script the widget Switchbutton ?

2015-10-27 Thread Ludovic THEBAULT
Le 27 oct. 2015 à 15:22, Paul Richards a écrit : > Hi Ludovic, > > If when you look at the property inspector for each widget, you will see what > options are available (basic TAB - which shows the house icon) > > In the case of the Switch, you can see a property for Switch on (hover mouse

Display a graphic at this real size (in inch or cm)

2014-07-22 Thread Ludovic THEBAULT
Hello, I want to display a graphic at this real size in cm. So i need to get the real size of the screen, or at least the screen resolution in dpi. Thanks for any clue ! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this ur

Re: Display a graphic at this real size (in inch or cm)

2014-07-23 Thread Ludovic THEBAULT
Le 23 juil. 2014 à 16:56, Charles E Buchwald a écrit : > Hi Ludovic, > You can use my lcResTool to explore the variety of screen densities > available sometimes called dpi or lpi or other names. > http://buchwald.ca/developer-tools/ > An "actual size" image or graphic is more complicated th

Re: Helping newcomers anticipate that standalones can't save to themselves

2014-08-15 Thread Ludovic THEBAULT
Le 15 août 2014 à 16:13, Richard Gaskin a écrit : > One of the most frequent frustrations new users have with LiveCode is the > moment they realize the standalone they've built can't save changes to its > stacks. > > Often this happens very late in the process, just after building the > stan

Re: "send message in 10" doesn't work properly

2014-01-18 Thread Ludovic THEBAULT
Le 19 janv. 2014 à 05:21, Dr. Hawkins a écrit : > On Sat, Jan 18, 2014 at 8:02 PM, Gerry wrote: > >> Send "doit" && myTarget in 10 ticks >> > > I had tried "in seconds", which the IDE wouldn't even allow . . . > > btw, this is 6.5 on OSX > > Did you noticed the « && » (= space) ? In your

MobGui and not MobGui items together

2014-01-19 Thread Ludovic THEBAULT
Hello, I use mobgui (0.29) to add some controls on a stack but if i want to add some fields or buttons directly from Livecode, when i test the stack on the simulator, the size of all controls i added from Livecode are biggest than the mobgui controls (which are in the good size). So i need to

Sqlite under Windows

2014-01-31 Thread Ludovic THEBAULT
Hello, I use sqlite with a standalone, and under windows, the importation of datas in a sqlite file is very very long compared under macos. It's normal ? Thanks ? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to sub

Re: Sqlite under Windows

2014-01-31 Thread Ludovic THEBAULT
Le 31 janv. 2014 à 22:38, Mark Stuart a écrit : > Hi Ludovic, > Are you using the SQLite BEGIN and COMMIT transaction before and after the > reading of the file during importation? > > My experience of importing without using transactions was the same as you, > until I started using as I just m

Menu memory

2014-02-18 Thread Ludovic THEBAULT
Hello, I made a quizz for a school. There are many "options buttons" which display severals choices. On the opencard script i set the label of each button to the first item of the menu, but when you click on a menu, it's the last choice that is selected by default and not the current label. H

Re: Menu memory

2014-02-18 Thread Ludovic THEBAULT
Le 18 févr. 2014 à 15:44, John Dixon a écrit : > Have a look at 'menuhistory' in the dictionary... Thanks. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription prefer

Livecode and Genymotion

2014-03-19 Thread Ludovic THEBAULT
Hello, Anyone use Genymotion to test android app ? I cannot succeed to launch my apps on it, they crashes at launch (but works with the "official" way). I add my app to the device by dragging the apk on the window of the virtual device (i set the settings to allow unknow sources). Thanks _

Re: Livecode and Genymotion

2014-03-19 Thread Ludovic THEBAULT
Le 19 mars 2014 à 17:01, Neil Roger a écrit : > Hi Ludovic, > > GennyMotion is built on x86 architecture and this is why LiveCode Android > apps will not run on this emulator (they are ARM based). > > However, I did have some success installing the ARM Translation Installer > v1.1

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

2020-04-16 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 visit

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 unrelate

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: 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 were

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 nex

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 Flig

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 thi

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 old

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 ab

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 cas

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 an

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 sc

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: 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 e

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, maybe

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. https://lessons.l

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 Stu

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: http://lists.runrev.co

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

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 > myÖA

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 l

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 good

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 p

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 _

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 :

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 mobileIsG

Check connection and timeout

2023-07-13 Thread Ludovic THEBAULT via use-livecode
Hello, I use this code to check is there is an internet connection : tsNETSETTIMEOUTS 60,0,2000,6,5,1000 put tsNetHeadSync("https://google.com/";, tHeaders, tResult, tBytes) into tRecvHeaders if tResult begins with "tsneterr:" then return false else return true

Re: Check connection and timeout

2023-07-14 Thread Ludovic THEBAULT via use-livecode
> Le 14 juil. 2023 à 08:26, Ludovic THEBAULT via use-livecode > a écrit : > > Hello, > > I use this code to check is there is an internet connection : > > tsNETSETTIMEOUTS 60,0,2000,6,5,1000 > > put tsNetHeadSync("https://google.com/";, tHeader

Re: Check connection and timeout

2023-07-15 Thread Ludovic THEBAULT via use-livecode
> Le 14 juil. 2023 à 17:14, Ralph DiMola via use-livecode > a écrit : > > Ludovic, > > Make sure that tsNet is active: > Hello Ralph Thanks. But yes tsnet was initialized. I’ve measured the timeouts in miliseconds and it was always 30003 milliseconds. But it’s only when there is a conne

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 Ple

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 linking for

Android 13 and higher and share files problems

2024-04-17 Thread Ludovic THEBAULT via use-livecode
Hello, I have an Android application that stores files in the "Documents" folder. The path to the files is something like : « /data/user/0/com.xxx.files/ ». With phones running Android 13 or higher, the application folder "com.xxx" is no longer visible in the file explorer, whereas on an Androi

Re: Android 13 and higher and share files problems

2024-04-18 Thread Ludovic THEBAULT via use-livecode
> Le 17 avr. 2024 à 10:18, panagiotis merakos via use-livecode > a écrit : > > Hello Ludovic, > > Which file explorer app do you use? Hello Panos, I use the phone's file manager. And even when connected to Windows, Explorer doesn't show the folder. I've created another application usin

Re: Android 13 and higher and share files problems

2024-04-18 Thread Ludovic THEBAULT via use-livecode
> Le 17 avr. 2024 à 10:18, panagiotis merakos via use-livecode > a écrit : > > RE the other issue with gmail - I suggest you file a bug report and attach > a sample stack and we will investigate. I found that you need to modify the email (just add one char for example), in the app Gmail, to

Re: I seem to have missed something

2024-07-24 Thread Ludovic THEBAULT via use-livecode
> Le 24 juil. 2024 à 18:53, Kevin Miller via use-livecode > a écrit : > > Free apps remain free. Just buy one seat of either Native/Cloud or Universal > depending on what platforms you want to deploy to. In your scenario, if you > happen to be doing multiple platform development / deployment

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: > > https://stackoverflow.com/questions/343865/how-to-convert-from-utm-to-latlng-in-pyth

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 me

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 subscript

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-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 m

  1   2   >