I've not used the notarisation app you refer to, but using the method in this lesson worked for me.
https://lessons.livecode.com/m/4071/l/1653720-code-signing-and-notarizing-your-lc-standalone-for-distribution-outside-the-mac-appstore-with-xcode-13-and-up
If you follow this method be aware that ...
Search found 11 matches
- Tue Feb 10, 2026 11:47 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Notarizing error
- Replies: 3
- Views: 15781
- Tue Feb 10, 2026 10:51 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Mac Standalone crashing on launch
- Replies: 11
- Views: 15686
Re: Mac Standalone crashing on launch
Create a stack. Add a stack script:
on startUp
answer "Hello"
end startUp
The stack works fine in the dev environment.
However, if you make a standalone from this stack, it will crash on launch, as described above.
There must be something about the way that the answer dialog is implemented ...
on startUp
answer "Hello"
end startUp
The stack works fine in the dev environment.
However, if you make a standalone from this stack, it will crash on launch, as described above.
There must be something about the way that the answer dialog is implemented ...
- Mon Feb 09, 2026 6:37 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Mac Standalone crashing on launch
- Replies: 11
- Views: 15686
Re: Mac Standalone crashing on launch
Thanks, Stam.
I've managed to work it out using a technique that should be more widely known - thanks to my colleague Ben Rubinstein for the suggestion.
Possible tip if you do get any kind of initialisation: put without a destination (which goes into the message box in the IDE) doesn’t normally ...
I've managed to work it out using a technique that should be more widely known - thanks to my colleague Ben Rubinstein for the suggestion.
Possible tip if you do get any kind of initialisation: put without a destination (which goes into the message box in the IDE) doesn’t normally ...
- Mon Feb 09, 2026 4:53 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Mac Standalone crashing on launch
- Replies: 11
- Views: 15686
Mac Standalone crashing on launch
[Please help - this is killing my project.]
I've been making standalone apps for my project for quite a while now. All OK.
As of the end of last week, standalone apps I make are crashing on launch.
Problem report from the Mac system says:
Crashed Thread: 0 Dispatch queue: com.apple.main-thread ...
I've been making standalone apps for my project for quite a while now. All OK.
As of the end of last week, standalone apps I make are crashing on launch.
Problem report from the Mac system says:
Crashed Thread: 0 Dispatch queue: com.apple.main-thread ...
- Mon Feb 09, 2026 4:44 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Adding and modifying items in the application menu
- Replies: 6
- Views: 15211
Re: Adding and modifying items in the application menu
Thanks, Richard.
I have implemented an automatic check on launch.
I have implemented an automatic check on launch.
- Tue Jan 20, 2026 5:26 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Adding and modifying items in the application menu
- Replies: 6
- Views: 15211
Re: Adding and modifying items in the application menu
Hi.
Have you worked with the "MenuBuilder" utility? It is what I use to create menus and modify existing ones. Find it in the "Tools" menu. It takes a little practice, but is intuitive, powerful and complete.
Craig
Yes the Menu Builder works well - thank you.
It's just modifying the ...
- Tue Jan 20, 2026 4:30 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Adding and modifying items in the application menu
- Replies: 6
- Views: 15211
Adding and modifying items in the application menu
I'm building an app and would like to add a ’Check for Updates…” item to the application menu.
Can’t see how to do it.
The About menu item and corresponding code seems to get put in the Help menu script.
I tried putting ’Check for Updates…” there, but no joy.
There doesn’t seem to be any ...
Can’t see how to do it.
The About menu item and corresponding code seems to get put in the Help menu script.
I tried putting ’Check for Updates…” there, but no joy.
There doesn’t seem to be any ...
- Wed Sep 03, 2025 2:14 pm
- Forum: Internet
- Topic: Using Digital Ocean Spaces and/or AWS S3 in Livecode
- Replies: 1
- Views: 33059
Using Digital Ocean Spaces and/or AWS S3 in Livecode
Does anyone have any experience using Digital Ocean Spaces in Livecode (or AWS S3)?
I would like to use this online storage service (or something similar) for a project but the authentication protocol of the API relies on SHA256 and HMAC encodings. What is needed is described in pseudo-code below ...
I would like to use this online storage service (or something similar) for a project but the authentication protocol of the API relies on SHA256 and HMAC encodings. What is needed is described in pseudo-code below ...
- Wed Jan 17, 2024 3:30 pm
- Forum: Talking LiveCode
- Topic: Connecting AirTable and LiveCode
- Replies: 4
- Views: 4188
Re: Connecting AirTable and LiveCode
Google 'AirTable API'richmond62 wrote: Wed Jan 17, 2024 12:56 pmDetails of where to find out about AirTable would be handy.A sample stack would be very handy.
- Wed Jan 17, 2024 3:28 pm
- Forum: Talking LiveCode
- Topic: Connecting AirTable and LiveCode
- Replies: 4
- Views: 4188
Re: Connecting AirTable and LiveCode
I've managed to find a way to read data.
Using my Personal Access Token - you put it in the httpHeaders and it all works.
So far so good.
What I want to do now is to find a way to update and add data to AirTable.
Using 'put' and 'push' doesn't seem to work.
Using my Personal Access Token - you put it in the httpHeaders and it all works.
So far so good.
What I want to do now is to find a way to update and add data to AirTable.
Using 'put' and 'push' doesn't seem to work.
- Wed Jan 17, 2024 12:53 pm
- Forum: Talking LiveCode
- Topic: Connecting AirTable and LiveCode
- Replies: 4
- Views: 4188
Connecting AirTable and LiveCode
I'm a long-term LiveCode (and HyperCard) programmer. Recently I have been experiencing the joys of AirTable - it really is very good.
Now I would like to connect the two so I can read and write AirTable data via LiveCode. I'm probably not the only person who would find this useful.
Is it ...
Now I would like to connect the two so I can read and write AirTable data via LiveCode. I'm probably not the only person who would find this useful.
Is it ...