Search found 3187 matches

by stam
Tue Mar 17, 2026 9:46 pm
Forum: Talking LiveCode
Topic: Livecode Community on Apple Silicon
Replies: 13
Views: 1072

Re: Livecode Community on Apple Silicon

Why not go flashy?

How about:
HyperX (kinda joining HyperCard and xTalk)
by stam
Tue Mar 10, 2026 11:10 am
Forum: Android Deployment
Topic: Match varialbes with case sensitivity.
Replies: 33
Views: 68162

Re: Match varialbes with case sensitivity.

Google85 How do you want to use this ability? My demo script can tell the difference between "dog" and "DoG", but then what? Craig Sounds like a good use-case for password management, to name one example. However if managing passwords outside of the home environment, I'd recommend hashing (where ca...
by stam
Sun Mar 08, 2026 9:33 pm
Forum: LiveCode Builder
Topic: call back to LCB from C code?
Replies: 11
Views: 2131

Re: call back to LCB from C code?

Async callbacks are the tricky case because you cannot call the LCB handler directly from a C thread — it will crash or corrupt state. You need to marshal the call back onto LCB's main thread. There are two practical approaches: Option 1: Polling (Simpler) C side maintains a thread-safe queue. LCB ...
by stam
Sun Mar 08, 2026 9:26 pm
Forum: LiveCode Builder
Topic: call back to LCB from C code?
Replies: 11
Views: 2131

Re: call back to LCB from C code?

I was wondering if the C code dylib can call back into the LCB? I really don't know enough about LCB (few here do...) According to Claude: Yes, C code in a dylib can call back into LCB, through handler references passed as function pointers. The mechanism works like this: On the LCB side, you decla...
by stam
Mon Feb 23, 2026 6:41 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to put a .txt file content into a field
Replies: 2
Views: 2676

Re: How to put a .txt file content into a field

Hi All, I have been wrestling with this for a while now and I have been away from LC for some time now. Trying to get back to it! In an App I aim developing, when I open a particular card I want to populate a field with the contents of a .txt file. Each line of the .txt file contains 4 tab separate...
by stam
Sun Feb 15, 2026 10:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Is forever really forever?
Replies: 46
Views: 21654

Re: Is forever really forever?

You could always take a walk on the wild side: both the Open Source continuation IDE and the web-browser implementation. Forever is never forever: but some good folk are prolonging 'things' for a bit. 8) The “wild side” as you call it is not (yet?) fit for my purposes. Webtalk, while cute and surpr...
by stam
Sat Feb 14, 2026 4:46 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Is forever really forever?
Replies: 46
Views: 21654

Re: Is forever really forever?

from the records of the LiveCode company in Britain is that nothing is 'forever' and nothing is quite what it seems. https://find-and-update.company-information.service.gov.uk/company/SC200728/charges Is this link news to you? This is an old story and while I don't understand the legalese, my impre...
by stam
Thu Feb 12, 2026 9:00 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Notarizing error
Replies: 2
Views: 5786

Re: Notarizing error

Alternatively, use an AI to guide you through notarisation. They are usually helpful and if you get errors just feed the error to the AI and it will usually sort it out. I personally use Claude AI but I’m sure any AI would do it.
by stam
Mon Feb 09, 2026 6:31 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Mac Standalone crashing on launch
Replies: 11
Views: 5832

Re: Mac Standalone crashing on launch

Some thoughts/questions 1. MacOS version? 2. LC version? 3. Do you have a current subscription if using LC create classic? 4. If you're using legacy version, has it been modified to run on whatever MacOS you're running? 5. Is this code related? create an empty project with no objects or code, make a...
by stam
Sat Feb 07, 2026 2:00 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Codesign error: Operation not permitted
Replies: 9
Views: 4875

Re: Codesign error: Operation not permitted

richmond62 wrote:
Sat Feb 07, 2026 1:40 pm
LLM?

Loud Laughing Moron?

PATA: People Addicted To Acronyms.

FDFO: Fun Derived From Obfuscation.

PACUTA: Pushing A Carrot Up Trump's . . . :lol:
Not sure if that is an attempt at humour, or just genuine ignorance.

Maybe you should ask chatGPT instead of posting lame sarcastic comments.
by stam
Sat Feb 07, 2026 1:15 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Codesign error: Operation not permitted
Replies: 9
Views: 4875

Re: Codesign error: Operation not permitted

Is that only true for Catalina? And what are the reasons for that? Nowadays you stand a much better chance of getting both a more accurate and definitely a faster answer using one of the many free (or free-tier) LLMs. The role of forums is diminishing day by day but probably forums will still remai...
by stam
Fri Feb 06, 2026 8:49 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Is forever really forever?
Replies: 46
Views: 21654

Re: Is forever really forever?

Yes, server is an important one for me too.
I’m not sure changes to existing installations can be enforced, but then what do I know.
by stam
Sun Feb 01, 2026 10:32 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Is forever really forever?
Replies: 46
Views: 21654

Re: Is forever really forever?

Yes, our thoughts are with Jacque in these deeply troubling times. Stay safe…
by stam
Thu Jan 29, 2026 11:04 am
Forum: Talking LiveCode
Topic: Why me?
Replies: 10
Views: 5407

Re: Why me?

Craig, just checking that the sessionLengths is a multi-line string rather than an array?
by stam
Thu Jan 29, 2026 11:01 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Open socket, wait in .lc file using LiveCode Server
Replies: 2
Views: 17892

Re: Open socket, wait in .lc file using LiveCode Server

The way I've used server is as pure middleware between the outside world and the database directly; I have it on a linux server running nginx rather than apache and its job is to manage calls received from http calls to .lc files. LC Server then directly interacts with a MySQL instance on the same s...