Search found 7189 matches

by jacque
Tue Jul 22, 2025 6:16 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Script only Stacks
Replies: 24
Views: 22213

Re: Script only Stacks

When you save a stack, LC actually creates a new copy and deletes the old one. When the new one runs it's like you just opened it and all normal messages are sent. You can try locking messages before saving, or just type "save stack TestSOStack" in the message box.
by jacque
Wed Jul 02, 2025 5:41 pm
Forum: Talking LiveCode
Topic: R.I.P. Bill Atkinson, 74
Replies: 3
Views: 3659

Re: R.I.P. Bill Atkinson, 74

Brilliant.
by jacque
Fri Jun 20, 2025 10:36 pm
Forum: Games
Topic: cutting irregular pieces from image for puzzle game
Replies: 62
Views: 20276

Re: cutting irregular pieces from image for puzzle game

I'm late coming into this because LC has blocked me from the forums and I need to use a VPN to get around it. Sometimes even that doesn't work. It has something to do with the recnt DoS attack. Anyway...I still get the daily digest so I know what's going on but it's tedious to respond. I wonder if t...
by jacque
Thu Jun 12, 2025 6:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: referring to other stacks: include .livecode extension
Replies: 6
Views: 4340

Re: referring to other stacks: include .livecode extension

One solution that might help for both conditions is to set up the stackfiles property in the mainstack. That allows you to use the short stack name while the engine uses the long file name.
by jacque
Tue Jun 10, 2025 6:59 pm
Forum: Announcements
Topic: MacOS Tahoe and not Sequoia support
Replies: 9
Views: 7750

Re: MacOS Tahoe and not Sequoia support

Probably never as LC is supposedly running hell-for-leather towards the web-based-thing. LC has stated they will support the classic version for 3 years, which is at least until 2027 depending on when they started the countdown, maybe through 2028. Someone should write a bug report specifying what ...
by jacque
Fri May 30, 2025 10:41 pm
Forum: Android Deployment
Topic: Android Keyboard - Using "Sentence" Option.
Replies: 17
Views: 6069

Re: Android Keyboard - Using "Sentence" Option.

dunbarx wrote:
Fri May 30, 2025 6:36 pm
Jacque.

I know that an iPhone has this "sentence" feature. a period followed by any number of spaces will automatically make the next "ordinary" character uppercase. But isn't the OP trying to do this in a LC app?

Craig
It's possible. I may have read "Android keyboard" wrong.
by jacque
Fri May 30, 2025 4:11 pm
Forum: Android Deployment
Topic: Android Keyboard - Using "Sentence" Option.
Replies: 17
Views: 6069

Re: Android Keyboard - Using "Sentence" Option.

This isn't a LC thing, it's a keyboard setting. Which keyboard are you using? I use SwiftKey, and the option is in the keyboard settings. Are you using the native Google keyboard?
by jacque
Wed May 14, 2025 6:20 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: copy a graphic with several colours and import it into LiveCode
Replies: 13
Views: 3035

Re: copy a graphic with several colours and import it into LiveCode

The only problem with SVG widgets are the bounding boxes - unfortunately the empty space in these will intercept mouseovers and mouse clicks so the empty spaces overlapping other graphics will cause this to fail. I've done this with native LC graphics. The trick here is to set the opacity of each g...
by jacque
Fri May 09, 2025 7:54 pm
Forum: Off-Topic
Topic: Forum behaviour change?
Replies: 7
Views: 55765

Re: Forum behaviour change?

I haven't been able to access the forums or any Livecode site page for 2 days, the connection always times out. I tried 3 different browsers on several devices with the same result. Today I used a VPN to access a server in Germany and got through immediately. My VPN is still on as I write this. Anyo...
by jacque
Fri May 09, 2025 7:40 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Combine several criteria in a search field
Replies: 19
Views: 6595

Re: Combine several criteria in a search field

Here's a way to search for multiple terms using the filter function. This assumes that search terms are separated by spaces but items would work too with minor modifications. It doesn't matter where the data is stored, in my test I used a field but a property would work fine. The main thing is the f...
by jacque
Sat Apr 26, 2025 5:12 pm
Forum: Multimedia
Topic: Stop player: pause the player and doesn't fire playStopped
Replies: 4
Views: 33094

Re: Stop player: pause the player and doesn't fire playStopped

As you noticed, playStopped is only sent when the media reaches the end. It should probably have been called playEnded. You could change the card handler to trap playPaused instead.
by jacque
Tue Apr 22, 2025 9:11 pm
Forum: Talking LiveCode
Topic: Cannot use a menu
Replies: 23
Views: 32340

Re: Cannot use a menu

The most annoying thing about computers is that they always do exactly what you tell them to. :|
by jacque
Mon Apr 21, 2025 5:30 pm
Forum: Talking LiveCode
Topic: Cannot use a menu
Replies: 23
Views: 32340

Re: Cannot use a menu

Sure, go ahead and post it. Maybe a third person viewpoint will find something.
by jacque
Sun Apr 20, 2025 5:52 pm
Forum: Talking LiveCode
Topic: Cannot use a menu
Replies: 23
Views: 32340

Re: Cannot use a menu

I assume this is on Mac? Is it possible that the menu group was duplicated and the wrong one is being used as a menu bar? Wild guess, I know.
by jacque
Sat Apr 19, 2025 6:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Bunging an image into a field
Replies: 5
Views: 2869

Re: Bunging an image into a field

Also, you are only searching a single word "cheese" in the first repeat because it's a literal, so by default there is only one so-called item. You want to search the field content, and it would go faster if you put the text of the field into a variable. put the text of fld "gaff" into tText put 0 i...