Search found 55 matches
- Fri Sep 18, 2020 2:14 am
- Forum: SoCal LiveCode Group
- Topic: ONLINE MEETING: October 1, 7PM PDT
- Replies: 2
- Views: 595
Re: ONLINE MEETING: October 1, 7PM PDT
Fun. I will be there.
- Mon Aug 31, 2020 11:01 pm
- Forum: Databases
- Topic: LiveCloud databases
- Replies: 10
- Views: 1793
Re: LiveCloud databases
Hi Mark, Thanks for clarifying the schemaless option - tbh the data i used is quite structured/well defined and i'll stick with schema. Appli sounds interesting, is there more information on this? Appli is under development. It is an alternative IDE that will sit on top of LiveCode. It is designed ...
- Mon Aug 31, 2020 12:08 am
- Forum: Databases
- Topic: LiveCloud databases
- Replies: 10
- Views: 1793
Re: LiveCloud databases
Hi Stam, There is no reason to get a Storm plan for your current needs. The main reason to look into the more expensive Storm plan is: You need your data to be on their own VMs You need all the resources for your data You need more control over how the region scales I think your performance issues c...
- Mon Aug 31, 2020 12:04 am
- Forum: Databases
- Topic: LiveCloud databases
- Replies: 10
- Views: 1793
Re: LiveCloud databases
Hi Simon, We miss seeing you and your active development in the forums. I only wish Digital Ocean had plans to build a data center in Brazil. Building a region with MS Azure is an expensive solution. Their pricing is nowhere near DO. We used Azure to build out our S. Africa region. We were able to d...
- Sun Aug 30, 2020 11:52 pm
- Forum: Databases
- Topic: LiveCloud databases
- Replies: 10
- Views: 1793
Re: LiveCloud databases
Hi Stam, LiveCloud does not provide a relational database at this time. To see where your speed issues may be, load your app in development into LiveCode. Your LiveCloud libraries will allow you to run some commands/functions in the message box. In your message box, type each of these commands one a...
- Mon Aug 03, 2020 7:32 pm
- Forum: Talking LiveCode
- Topic: Should I be using Strict Compilation mode ?
- Replies: 27
- Views: 4072
Re: Should I be using Strict Compilation mode ?
Hi Skids, I am happy to elaborate on the value of strict compilation as I see it. Writing code is complicated enough without my fingers wandering around and missing the key I meant to touch. Strict Compilation (SC), is analogous to a spell checker. When I mistype a variable in a given handler, SC wi...
- Mon Aug 03, 2020 7:29 am
- Forum: Talking LiveCode
- Topic: Should I be using Strict Compilation mode ?
- Replies: 27
- Views: 4072
Re: Should I be using Strict Compilation mode ?
My short and apparently unpopular response is yes to strict compilation mode being turned on full time. We have made it a standard setting team wide and have enjoyed less bugs.
- Mon Apr 20, 2020 10:26 pm
- Forum: Talking LiveCode
- Topic: Moving Speed out of GPS data
- Replies: 7
- Views: 2313
Re: Moving Speed out of GPS data
This is possible now. I do not know which version of LC getting the speed was released. Sample code: on openCard if the platform is "iphone" then mobileStartTrackingSensor "location", false end if end openCard command locationChanged local tSensorDataA, tSpeed --RETURN A STRING WITH THE CURRENT LATI...
- Mon Apr 20, 2020 10:24 pm
- Forum: iOS Deployment
- Topic: iPhone GPS Question
- Replies: 2
- Views: 1539
Re: iPhone GPS Question
This is possible now. I do not know which version of LC getting the speed was released. Sample code: on openCard if the platform is "iphone" then mobileStartTrackingSensor "location", false end if end openCard command locationChanged local tSensorDataA, tSpeed --RETURN A STRING WITH THE CURRENT LATI...
- Mon Apr 20, 2020 10:22 pm
- Forum: Feature Proposals
- Topic: Please add Speed property to GPS
- Replies: 6
- Views: 3928
Re: Please add Speed property to GPS
This is possible now. I do not know which version of LC getting the speed was released. Sample code: on openCard if the platform is "iphone" then mobileStartTrackingSensor "location", false end if end openCard command locationChanged local tSensorDataA, tSpeed --RETURN A STRING WITH THE CURRENT LATI...
- Mon Apr 20, 2020 10:14 pm
- Forum: Talking LiveCode
- Topic: Moving Speed out of GPS data
- Replies: 7
- Views: 2313
Re: Moving Speed out of GPS data
The speed value that comes from mobileSensorReading("location",true) is accurate for meters per second. To get miles per hour, multiply the output by 2.237. To get kilometers per hour, multiply the output by 3.6. I ran this in my car. I found the output to be spot on. But, there is a bit of lag befo...
- Wed Mar 18, 2020 12:50 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Read from a Spreadsheet?
- Replies: 7
- Views: 1336
Re: Read from a Spreadsheet?
This is a general response considering the information presented. Feel free to write back if you want to hone in on these or other ideas. All spreadsheets can do I/O as a CSV. You could import the CSV into LiveCode and parse the data into a dataGrid or field with tab stops. Or, you could import the ...
- Wed Mar 04, 2020 2:09 am
- Forum: iOS Deployment
- Topic: Analytics with Livecode.
- Replies: 17
- Views: 5799
Re: Analytics with Livecode.
LiveCloud has mentioned something about developing analytics using their own proposal, but I think they stopped development. The subject of this same post goes back to 2011... Hi Trevix, I am one of the developers for LiveCloud. I decided to pop in here and respond since our tracking feature was me...
- Tue Mar 03, 2020 8:52 pm
- Forum: Feature Proposals
- Topic: Permanent ID function (same as FileMaker Pro)
- Replies: 56
- Views: 11276
Re: Permanent ID function (same as FileMaker Pro)
Thank you for going into such detail Mark T., very informative and quite a lot of work to get too. My pleasure. Pssst...i have a secret. Most of this stuff was developed when I was in my 20s. When you are that young, you view the whole world and infinite time is in front of you. At my current age, ...
- Tue Mar 03, 2020 8:22 pm
- Forum: Feature Proposals
- Topic: Permanent ID function (same as FileMaker Pro)
- Replies: 56
- Views: 11276
Re: Permanent ID function (same as FileMaker Pro)
Going back to the original request (which was for some means of validating a user's right to run an app) and obviously what @mtalluto goes to great lengths to do - maybe I'm being slightly naive here, but how does some sort of hardware based unique id offer any better means of validating a user's l...