Search found 6824 matches

by jacque
Tue Mar 26, 2024 4:11 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: LC makes my stack a substack
Replies: 15
Views: 756

Re: LC makes my stack a substack

There is no syntax error in the reported statement. Can we see the whole handler that opens the second stack?

It may be that LC is looking for the stack in the defaultfolder, which is normally LC's application folder. But in that case I'd expect a "can't find stack" error.
by jacque
Tue Mar 19, 2024 5:50 pm
Forum: Research and Post Secondary
Topic: Serious Games and Game-Based learning
Replies: 13
Views: 22070

Re: Serious Games and Game-Based learning

She was not a well person. I think many of us received unfounded accusations about imagined offenses.
by jacque
Fri Mar 15, 2024 7:09 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Using field with "answer" dialog open
Replies: 26
Views: 1068

Re: Using field with "answer" dialog open

The dictionary suggests using selectionChanged to catch clicks in an unlocked field.
by jacque
Fri Mar 15, 2024 5:48 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Using field with "answer" dialog open
Replies: 26
Views: 1068

Re: Using field with "answer" dialog open

Do you want to delete a line when the user clicks it? The clickline function will tell you which line was clicked so you won't need a dialog. See "clickline" in the dictionary.
by jacque
Mon Mar 11, 2024 6:41 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: find word
Replies: 4
Views: 338

Re: find word

LC finds words by looking for spaces between words. If there is no space after a bracket then LC thinks the bracket is part of the word. I'm not sure if this will work, but try "find trueword" instead of "find word". It isn't in the dictionary but it might work. The keyword "trueword" ignores punctu...
by jacque
Sun Mar 10, 2024 6:59 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Missing Fonts
Replies: 37
Views: 2079

Re: Missing Fonts

If I remember right, LC only shows the family name in the Font menu, which isn't necessarily the name of the individual variations. Look at the font in a font utility to see the actual names of the different styles and assign your controls with those. LC says if you set text to bold, for example, an...
by jacque
Mon Mar 04, 2024 6:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Scrolling from a remembered vScroll position on mobile
Replies: 9
Views: 3446

Re: Scrolling from a remembered vScroll position on mobile

Here's an explanation: https://lessons.livecode.com/m/4069/l/9 ... ll-a-field

Setting the enclosing group's layermode to "scrolling" will allow it to work with acceleratedRendering.
by jacque
Fri Mar 01, 2024 6:58 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Click and/or drag ?
Replies: 58
Views: 3033

Re: Click and/or drag ?

Because DRAGDELTA will affect the DRAG commands but not the GRAB command. These two are completely different things. My first attempt used "set the loc of me to the mouseloc" instead of using grab, which was smooth enough on my Mac, but then I noticed that grab calculated the mouse offset automatic...
by jacque
Fri Mar 01, 2024 6:53 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Click and/or drag ?
Replies: 58
Views: 3033

Re: Click and/or drag ?

richmond62 wrote:
Fri Mar 01, 2024 9:24 am
How the fudgums is chummy, the newbie, going to find out stuff like that?
By typing "drag" into the dictionary search field? Or looking at the "related" entry?
by jacque
Thu Feb 29, 2024 8:46 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Click and/or drag ?
Replies: 58
Views: 3033

Re: Click and/or drag ?

Similar but a bit shorter: local sDragging on dragStart put true into sDragging end dragStart on mouseMove if sDragging then grab me end mouseMove on mouseUp if not sDragging then -- do click stuff end if put false into sDragging end mouseUp The default dragDelta is 4 so you probably don't need to c...
by jacque
Wed Feb 21, 2024 8:07 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Weird can't redraw chart problem - solved
Replies: 6
Views: 730

Re: Weird can't redraw chart problem - solved

There's a "redraw" item in the Glossary portion of the Dictionary window.
That makes more sense. And here I was about to get all excited.
by jacque
Wed Feb 21, 2024 6:07 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Weird can't redraw chart problem - solved
Replies: 6
Views: 730

Re: Weird can't redraw chart problem - solved

I don't see a redraw command in the dictionary. I do see three commands that are either inactive or apply only to specific controls like the (deprecated) Browser.
by jacque
Sun Feb 18, 2024 6:41 pm
Forum: Games
Topic: Valentine Gadget
Replies: 10
Views: 966

Re: Valentine Gadget

LC creates a temporary signing certificate when you build a standalone with "sign for development" but it only works for you. Others won't be able to open the app until it's signed and notarized, unless they manually approve it in system prefs.
by jacque
Sat Feb 17, 2024 9:54 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Where did the Quick Search button in the Script Editor Go?
Replies: 10
Views: 793

Re: Where did the Quick Search button in the Script Editor Go?

When the Search feature disappears from the bottom of my script editor window it invariably requires a new preferences file. I keep some already customized backups handy to save time since this happens with more regularity than seems reasonable... but with no recipe that I can see (yet.) The recipe...
by jacque
Tue Feb 13, 2024 7:14 pm
Forum: Talking LiveCode
Topic: Code folding for Livecode 9.6.9 and up
Replies: 41
Views: 2764

Re: Code folding for Livecode 9.6.9 and up

Wow! Fantastic.

Go to advanced search