Search found 2648 matches

by stam
Mon Sep 28, 2020 5:41 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Best strategy for building complex software?
Replies: 24
Views: 12585

Best strategy for building complex software?

Hi all, i'm going to be porting a rather complex Filemaker database app to LiveCode and am wondering about strategies to make sure this is efficient and maintainable going forward... The database has several entities and has been refactored/refined over a number of years. During previously developme...
by stam
Fri Sep 25, 2020 3:26 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [SOLVED] IDE problem - strict compilation stopped working
Replies: 7
Views: 3225

Re: IDE problem - strict compilation stopped working

Klaus wrote:
Fri Sep 25, 2020 2:20 pm
Try to trash your LC prefs, use the message box to locate the file:
put the filename of stack "revpreferences"
Klaus - you're a genius!
Trashing the prefs worked a treat!

All back to normal now...

Thank you!
by stam
Fri Sep 25, 2020 3:07 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [SOLVED] IDE problem - strict compilation stopped working
Replies: 7
Views: 3225

Re: IDE problem - strict compilation stopped working

Thanks Klaus, will try trashing the preferences when I get back to my computer...

So far, restating LC and rebooting did nothing...

I guess worse case scenario just reinstall?
by stam
Fri Sep 25, 2020 2:11 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [SOLVED] IDE problem - strict compilation stopped working
Replies: 7
Views: 3225

Re: IDE problem - strict compilation stopped working

Klaus wrote:
Fri Sep 25, 2020 2:06 pm
Wild guess, maybe it will only work inside of handlers/functions?
nope:

Image
by stam
Fri Sep 25, 2020 2:04 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [SOLVED] IDE problem - strict compilation stopped working
Replies: 7
Views: 3225

[SOLVED] IDE problem - strict compilation stopped working

Hi all, I prefer to use strict completion mode & variable checking to reduce errors from typos etc. This had been working fine until today... but as today this seems to have stopped working. Live errors and variable checking are selected in the script IDE and 'strict compilation mode' is selected in...
by stam
Sun Sep 20, 2020 3:33 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Setup iOS with nex Xode-Version
Replies: 9
Views: 3699

Re: Setup iOS with nex Xode-Version

AlexP wrote:
Sat Sep 19, 2020 9:00 am
Do you maybe know, wich path to set up in LC to get the connection to android working?
For me, it's located at: /Users/[USER]/Library/Android/sdk
by stam
Mon Sep 14, 2020 11:29 pm
Forum: iOS Deployment
Topic: Is there any really successfully App build with LC?
Replies: 38
Views: 30746

Re: Is there any really successfully App build with LC?

Randy Hengst wrote:
Mon Sep 14, 2020 7:30 pm
Not sure how you define successful…
To be clear, i didn't name the original thread!
Rather than 'really successful' i would say software you're proud of - for me that's a better measure...
by stam
Mon Sep 14, 2020 11:27 pm
Forum: iOS Deployment
Topic: Is there any really successfully App build with LC?
Replies: 38
Views: 30746

Re: Is there any really successfully App build with LC?

good stuff guys, really interesting... hope people will post more! Has there ever been an apple-style (annual) "design awards" competition? Not only would this be of interest to people curious about LC but would probably inspire many. Even XOJO has an annual competition and i'm always curious to see...
by stam
Mon Sep 14, 2020 4:48 pm
Forum: iOS Deployment
Topic: Is there any really successfully App build with LC?
Replies: 38
Views: 30746

Re: Is there any really successfully App build with LC?

Hey all - this is a 5 year old thread and I know there is an official “stories” link on mothership’s website...

But wondering what else people have done with LC? Any proud commercial/non-commercial devs wanting to show off their efforts? (Not just on iOS!)
by stam
Sat Sep 12, 2020 12:47 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: I need help with repeat
Replies: 3
Views: 2096

Re: I need help with repeat

Hi Fuenzy, If i've understood correctly you want a score of 30 to decrement by 1 every 5 seconds and stop at 0 - and a reset button that stops this and puts the score back to 30? You can also do this with wait with messages (for non-blocking interface that allows interface to work normally while wai...
by stam
Fri Sep 11, 2020 10:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Single quote/double quote syntax issue with SQLite
Replies: 8
Views: 8878

Re: Single quote/double quote syntax issue with SQLite

I build theList, which at this point doesn't work, in the following form: (1,1,1,1350, ...(total of 19 values)..., 0,0,0), (2,1,1,1350, ...(total of 19 values)..., 0,0,0), (3,1,1,1350, ...(total of 19 values)..., 0,0,0), ... ... ... (26,1,1,1350, .......................... 0,0,0), Hi Lonie, The par...
by stam
Wed Sep 09, 2020 3:28 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Deploying to the Windows App Store
Replies: 6
Views: 3053

Re: Deploying to the Windows App Store

That being said, it would genuinely be helpful if someone had an “idiots guide” on how to submit apps to the windows and Mac App Store... Is there “an app for that”? In the world of XOJO you can use the Ohanaware appWrapper that manages code signing, notarisation etc - these processes seem to just i...
by stam
Mon Sep 07, 2020 7:16 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Whole numbers
Replies: 30
Views: 13317

Re: Whole numbers

Except as mentioned, strictly always returns false regardless if the value is 3 or 3.0. That is, as I understand it, because of the way the value is stored internally (quite possibly the integer is stored as a double and the rational as some other data type internally). The logic of “coercion” is su...
by stam
Mon Sep 07, 2020 1:08 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Whole numbers
Replies: 30
Views: 13317

Re: Whole numbers

As of LC 8.0 there is an "is strictly" operator. value is strictly { nothing | a boolean | an integer | a real | a string | a binary string | an array } Unfortunately I can not get it to work with integers. It probably reflects the internal state of LC or how it currently views value. Maybe someone...
by stam
Mon Sep 07, 2020 12:42 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Single quote/double quote syntax issue with SQLite
Replies: 8
Views: 8878

Re: Single quote/double quote syntax issue with SQLite

Of all the methods you've demonstrated is there a "Best Practice" method I should adopt? Any speed benefits from one or the other? Well i consider myself a LiveCode newbie as only been using this for a couple of months... so not sure i can advise about best practice! But in my mind, using parameter...

Go to advanced search