Search found 6846 matches

by jacque
Sat Apr 06, 2024 6:26 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Hide tooltip instantly?
Replies: 15
Views: 786

Re: Hide tooltip instantly?

Here's another untested idea. Tooltips are removed on mouseleave, so try this:

Code: Select all

on suspendStack
  send "mouseleave" to the mouseControl
end suspendStack 
by jacque
Fri Apr 05, 2024 6:39 pm
Forum: iOS Deployment
Topic: ITMS-91053: Missing API declaration
Replies: 5
Views: 1190

Re: ITMS-91053: Missing API declaration

I did a quick look at the requirements and I think these probably relate to the main functions of your app, which I think does music playback, right? The timestamp one specifically mentions audio playback calculations. If your app stores any data on the device, that would explain the diskspace requi...
by jacque
Tue Apr 02, 2024 6:16 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Where are the newbies?
Replies: 139
Views: 1324516

Re: Where are the newbies?

What we should be looking for instead is what explains the surge in beginner numbers between 2006 and 2013. I wonder if it has something to do with Supercard's limitations. Also, devoted HC users were starting to realize their Macs would no longer support their HC stacks. I had a lot of conversion ...
by jacque
Sat Mar 30, 2024 6:13 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: LC makes my stack a substack
Replies: 15
Views: 1227

Re: LC makes my stack a substack

I suspect the problem isn't corruption, but if the new stacks fail in the same way then I'd be happy to take a look at them and see if I can find the problem. Or send them now if you want to avoid reproducing everything.
by jacque
Thu Mar 28, 2024 5:54 pm
Forum: Android Deployment
Topic: Android Studio - Additional JDK not needed (Solution to Java is none error)
Replies: 33
Views: 217782

Re: Android Studio - Additional JDK not needed (Solution to Java is none error)

Not lucky. Reasonable and logical, like a good programmer. Congratulations. :)
by jacque
Wed Mar 27, 2024 6:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: LC makes my stack a substack
Replies: 15
Views: 1227

Re: LC makes my stack a substack

When you made the substack into a mainstack, did you also save the original mainstack? If not, then the substack may still be there. I believe LC moves the substack out to a new mainstack and deletes the one embedded in the first mainstack, but if you don't save it the substack will remain. Try this...
by jacque
Tue Mar 26, 2024 4:40 pm
Forum: Android Deployment
Topic: Android Studio - Additional JDK not needed (Solution to Java is none error)
Replies: 33
Views: 217782

Re: Android Studio - Additional JDK not needed (Solution to Java is none error)

You've probably looked at this but just in case: https://lessons.livecode.com/a/1770871- ... -checklist

There used to be a lesson on causes of the error you're getting but I couldn't find it.
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: 1227

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: 23775

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: 1573

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: 1573

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: 500

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: 2745

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: 3702

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: 4117

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...

Go to advanced search