9.6.2 (rc5) No messages to message box

If you find an issue in LiveCode but are having difficulty pinning down a reliable recipe or want to sanity-check your findings with others, this is the place.

Please have one thread per issue, and try to summarize the issue concisely in the thread title so others can find related issues here.

Moderator: Klaus

Post Reply
n.allan
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 153
Joined: Mon Mar 12, 2007 12:06 pm

9.6.2 (rc5) No messages to message box

Post by n.allan » Thu Apr 15, 2021 9:57 am

I'm sure this has been a bug for a few versions now but I am currently using 9.6.2 (rc5) on OSX 11.2.3 Big Sur.

Create a blank stack and edit the card script.

Code: Select all

on doSomething
	put "Hello World!"
end doSomething
Apply

If I right click the card, send card message, doSomething...No message box is popping up. If the message box is open, no message shows.

Am I going insane? All preferences have been set to default.

It's a fundamental feature I use for debugging. I have waded through the quality page to look for bugs but it's a needle in a stack of needles.

richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 10078
Joined: Fri Feb 19, 2010 10:17 am

Re: 9.6.2 (rc5) No messages to message box

Post by richmond62 » Thu Apr 15, 2021 12:34 pm

Let's see . . .

This works:

Code: Select all

on mouseUp
   put "Cripes!"
end mouseUp
With this in the cardScript:

Code: Select all

on doIt
   put "Cripes!"
end doIt
and this in a button:

Code: Select all

on mouseUp
   send "doIt" to card id 1002
end mouseUp
things work.
If I right click the card
Nothing happens at all.

Not entirely sure who is 'insane', but I do NOT understand this:
If I right click the card, send card message
as I have NEVER right-clicked on a card UNLESS I have a

Code: Select all

on mouseUp 3
--do something
end mouseUp
type of script in the card.

richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 10078
Joined: Fri Feb 19, 2010 10:17 am

Re: 9.6.2 (rc5) No messages to message box

Post by richmond62 » Thu Apr 15, 2021 12:40 pm

OK, I owe you some sort of apology as your point about contextual menus
is correct: a new, blank stack yields a contextual menu with a right-click.

As soon as the stack gets a script the contextual menu vanishes.

In LC 8.2.0 on Mac OS 11.3 beta 8 in BROWSE mode there are NO contextual menus,
but there are in POINTER mode.

Post Reply