Search found 83 matches

by matgarage
Mon Jul 20, 2026 1:44 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Problem with recursive API call
Replies: 7
Views: 510

Re: Problem with recursive API call

It works.
Thanks to FourthWold’s advice and the LOAD function, the code is cleaner and doesn’t generate any errors.
Thanks to everyone.
by matgarage
Mon Jul 20, 2026 12:59 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Problem with recursive API call
Replies: 7
Views: 510

Re: Problem with recursive API call

I forgot to mention that, to test it, you need to select a business category from the data grid at the top and a region from the drop-down menu in the top right-hand corner.
Then click on ‘Recherche’.

@ FourthWorld: I’ll read this lesson carefully.
by matgarage
Mon Jul 20, 2026 11:02 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Problem with recursive API call
Replies: 7
Views: 510

Re: Problem with recursive API call

@ Emily-Elisabeth: I’m going to work on replacing the logic in my script by testing it with SEND

@ bwmilby: I tested it by changing the number of results per page to 9, and got the same error message on the 128th iteration.
When I reduced it to 5, I got an HTTP 429 error: too many requests. I’m not ...
by matgarage
Fri Jul 17, 2026 9:55 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Problem with recursive API call
Replies: 7
Views: 510

Problem with recursive API call

Hello,

I’m having a problem with a recursive call to an API.
The purpose of this API is to allow users to retrieve lists of companies using filters such as sector of activity, region, etc.
The documentation is available here:
https://recherche-entreprises.api.gouv.fr/docs/

My script makes a ...
by matgarage
Mon Jun 15, 2026 2:22 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: AI Apple Foundation Models in Livecode
Replies: 2
Views: 2791

Re: AI Apple Foundation Models in Livecode

My goal is to access the text-processing capabilities of the on-device AI in recent Macs, outside of Apple’s intended framework.
Having an on-device AI is quite useful for processing data that you don’t want to share.
Please note that this solution requires macOS Tahoe and Xcode 26

So my approach ...
by matgarage
Fri Jun 12, 2026 8:28 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: AI Apple Foundation Models in Livecode
Replies: 2
Views: 2791

AI Apple Foundation Models in Livecode

(Post Deleted)

Sorry, I had to delete this post because, after a few successful attempts, I’m now getting error codes and can’t figure out why.
I’ll finalise this approach before sharing it with the community.
by matgarage
Thu Mar 26, 2026 11:01 am
Forum: Talking LiveCode
Topic: Livecode Standard Plan
Replies: 34
Views: 34615

Re: Livecode Standard Plan

Wow
I've noticed that a passion for LiveCode (like love) stirs up strong emotions.
The beauty you can find in code (and its execution) is comparable to the emotions you might feel when listening to music.
My first experience (not romantic) was with a Commodore 64.
I was a teenager, living in the ...
by matgarage
Wed Mar 25, 2026 11:13 am
Forum: Talking LiveCode
Topic: Livecode Standard Plan
Replies: 34
Views: 34615

Re: Livecode Standard Plan

I’m old enough to feel nostalgic for freeware and shareware. :wink:
Once I’ve swallowed the bitter pill of broken promises, I might console myself by making my projects available to everyone.
It’s hard to give up on your dreams
by matgarage
Wed Mar 25, 2026 10:45 am
Forum: Talking LiveCode
Topic: Livecode Standard Plan
Replies: 34
Views: 34615

Re: Livecode Standard Plan

To be honest, I had a feeling this would happen.
I won’t be switching to the new model, which, in my view, has lost its way.
This forced change is holding hostage everyone who built a business on the previous business model.

I’ll have to give up my dreams of ever commercializing my software. Maybe ...
by matgarage
Tue Mar 24, 2026 5:33 pm
Forum: Talking LiveCode
Topic: Livecode Standard Plan
Replies: 34
Views: 34615

Livecode Standard Plan

Hello everyone,
What will happen to my “LiveCode Standard Plan,” which I signed up for through a promotional offer that guaranteed me the same rate: €111.78 per year?
by matgarage
Thu May 15, 2025 8:28 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Combine several criteria in a search field
Replies: 19
Views: 88184

Re: Combine several criteria in a search field

Stam, I'm convinced that REGEX is a powerful tool that I need to add to my skill set.
Thanks for these links.
I'm putting ‘Exploring the power of REGEX’ on my to-do list.
by matgarage
Wed May 14, 2025 1:56 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Combine several criteria in a search field
Replies: 19
Views: 88184

Re: Combine several criteria in a search field

I was really looking forward to putting your advice into practice.
Nice, all three solutions work.
I've adapted the jaque script a little to work directly in my search field.

In the end, REGEX the Jaque way isn't so complicated. The pipe symbol is not beyond my skills.

It's the simplest and most ...
by matgarage
Tue May 13, 2025 4:50 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Combine several criteria in a search field
Replies: 19
Views: 88184

Re: Combine several criteria in a search field

Whouaou

I've been away for a few days, so I'm delighted that my question didn't find Livecode's limits.
Too busy today to get back to coding, I'm saving myself a slot tomorrow to try out these solutions.

However, I hope that ‘REGEX’ won't give me nightmares tonight...
by matgarage
Thu May 08, 2025 4:19 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Combine several criteria in a search field
Replies: 19
Views: 88184

Re: Combine several criteria in a search field

You're right, Craig.

I'll have to rethink my strategy.
My script systematically retrieves the original content in the custom Properties to apply the filter with each character entered.
But that's not possible for a multi-criteria search.

I'm going to think about a simple integration for the user ...
by matgarage
Thu May 08, 2025 1:53 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Combine several criteria in a search field
Replies: 19
Views: 88184

Re: Combine several criteria in a search field

Hello Richmond62

‘Rval’ is the value of what I want to search for in the datagrid rows.
In your script, if my search value is ‘white’ I would get:
PULPwhiteStrawberry
Right ?

In the dictionary, the ‘filter’ function offers the following options:
* and ?, and others focused on individual characters ...