Search found 6849 matches

by jacque
Fri Apr 12, 2024 5:19 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: get name of flashdrive.
Replies: 20
Views: 1372

Re: get name of flashdrive.

The filename of the stack should include the volume name.
by jacque
Fri Apr 12, 2024 5:15 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Styling paragraphs/lines?
Replies: 44
Views: 2750

Re: Styling paragraphs/lines?

Replace carriage returns with numToChar(11). This is a soft return which shows a blank line but treats the text as a single paragraph. Note that if you need to count lines, it will report the both visible paragraphs as a single line.
by jacque
Sat Apr 06, 2024 11:13 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Hide tooltip instantly?
Replies: 15
Views: 944

Re: Hide tooltip instantly?

I should note that I didn't even test my suggestion so I'm not due for any credit yet.
by jacque
Sat Apr 06, 2024 6:26 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Hide tooltip instantly?
Replies: 15
Views: 944

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

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

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

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

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

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

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

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

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

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

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

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

Go to advanced search