Search found 6844 matches

by jacque
Fri May 10, 2024 7:01 pm
Forum: Talking LiveCode
Topic: What is up with "lock Cursor"?
Replies: 37
Views: 781

Re: What is up with "lock Cursor"?

dunbarx wrote:
Fri May 10, 2024 2:27 pm
@Jacque. The dictionary states:
Note: If there is no idle handler anywhere in the message path, no idle message is sent.
Ah. I stand corrected. The engine still uses it though.
by jacque
Fri May 10, 2024 6:55 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: iOS certificates?
Replies: 5
Views: 211

Re: iOS certificates?

Did you manually export your certificates from the old Mac to the new one? Using a backup won't work.
https://help.apple.com/xcode/mac/current/#/dev8a2822e0b

You can also use Keychain to export/import.
by jacque
Fri May 10, 2024 12:02 am
Forum: Talking LiveCode
Topic: What is up with "lock Cursor"?
Replies: 37
Views: 781

Re: What is up with "lock Cursor"?

"Idle" is not sent unless there is an actual idle handler somewhere. Thank heavens. Didn't HC sent them always? Anyway, it seems that the cursor only stays locked based on its remaining within the object from whence it was changed. If in the card script, it will happily roam around all over, until,...
by jacque
Thu May 09, 2024 6:33 pm
Forum: Talking LiveCode
Topic: What is up with "lock Cursor"?
Replies: 37
Views: 781

Re: What is up with "lock Cursor"?

The cursor should remain locked across handlers until one of them unlocks it or an idle occurs. At least that's my current understanding. The fact that it doesn't is a bug.
by jacque
Thu May 09, 2024 4:56 pm
Forum: Talking LiveCode
Topic: What is up with "lock Cursor"?
Replies: 37
Views: 781

Re: What is up with "lock Cursor"?

Jacque thinks this was a bug that was resolved. It does not seem to be. I may be wrong about the fixed version of LC. The team built a custom version for me with the cursor fix because I relied on a constant custom cursor for a client project and defaultCursor wasn't working consistently. I assumed...
by jacque
Wed May 08, 2024 9:21 pm
Forum: Talking LiveCode
Topic: What is up with "lock Cursor"?
Replies: 37
Views: 781

Re: What is up with "lock Cursor"?

I believe they have to be PDF images. No, just standard PNG, black and white, and a third color marked as transparent. I should correct myself, the lock cursor command is supposed to last across handlers until it is unlocked, but a bug broke that until it was fixed recently, I think it was in LC 9....
by jacque
Wed May 08, 2024 6:55 pm
Forum: Talking LiveCode
Topic: What is up with "lock Cursor"?
Replies: 37
Views: 781

Re: What is up with "lock Cursor"?

The cursor resets on idle if "lock cursor" is used. The defaultCursor replaces the arrow throughout -- usually. In a standalone you're pretty safe but in the IDE sometimes the LC cursor takes over again if you focus on an LC stack like the script editor and then go back to the mainstack. There was a...
by jacque
Tue May 07, 2024 5:45 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: OpenCard to control?
Replies: 36
Views: 1233

Re: OpenCard to control?

@stam: Cards receive messages before backgrounds if the group has background behavior set. If not then they behave like other controls and get messages before the card but after the controls the group contains. I am delighted to see that you and Richard are earth lovers. 🙂 Edit: I don't think openca...
by jacque
Mon May 06, 2024 6:49 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Script Widget does not work as expected - solved
Replies: 6
Views: 355

Re: Script Widget does not work as expected

Klaus wrote:
Sun May 05, 2024 6:49 pm
Yes, that applies to widgets built with Livecode Builder, but does that also apply to SCRIPT (built with LC scripts) widgets?
Apparently. Who knows.
by jacque
Mon May 06, 2024 6:39 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: OpenCard to control?
Replies: 36
Views: 1233

Re: OpenCard to control?

A long time ago one member referred to us as either sky worshippers or earth somethings. Wish I could remember the exact labels, it was clever. I am firmly bound to the earth but over the years I have learned to flip the vision the sky worshippers cling to. If that fails I use Google translate.
by jacque
Sun May 05, 2024 5:43 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Script Widget does not work as expected - solved
Replies: 6
Views: 355

Re: Script Widget does not work as expected

None of the built-in LC widgets respond to common mouse events either, the engine appears to ignore them. That's why each one has its own terminology for mouse clicks. I have no idea why they behave that way.
by jacque
Fri May 03, 2024 1:46 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Cursor visibility problem
Replies: 14
Views: 488

Re: Cursor visibility problem

Having shut down and restarted LC it now appears that I have a stable bold black arrow to navigate with - just what I needed. I'm curious how you solved it. Did you set the defaultCursor? I had a stack that needed to use a custom cursor throughout and I ended up editing the arrow image in the revMa...
by jacque
Tue Apr 30, 2024 6:41 pm
Forum: Android Deployment
Topic: mobilePlaySoundOnChannel - how to toggle looping of a sound ?
Replies: 1
Views: 261

Re: mobilePlaySoundOnChannel - how to toggle looping of a sound ?

Any call to mobilePlaySoundOnChannel will stop the current sound if the sound channel is the same. You can stop the loop by calling mobilePlaySoundOnChannel with empty as the sound. Or you can replace it by calling mobilePlaySoundOnChannel with the same sound and passing "now" as the type.
by jacque
Sat Apr 27, 2024 5:40 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Force the script editor to update?
Replies: 35
Views: 1403

Re: Force the script editor to update?

I think I found a clue: if the main stack to be closed has its cantDelete property set to true, the delete stack command gets stuck. Is this a bug due to the double meaning of delete stack ? Good catch, that would be it. The cantDelete property comes from HyperCard and has been around for decades. ...
by jacque
Fri Apr 26, 2024 6:05 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Force the script editor to update?
Replies: 35
Views: 1403

Re: Force the script editor to update?

Where is the handler that deletes the stack? If it's in stack you're deleting, the problem might be the handler itself, which can't delete itself while its own handler is running.

Go to advanced search