Re: Remain on First Card Whilst Sending Messages to Second Card

2019-03-18 Thread Bob Sneidar via use-livecode
That should not be happening simpy because you send a message to a card. Something must be going to the card. Lock screen will help but there are certain circumstances I have learned much to my dismay that unlocks all screen locks. Bob S > On Mar 17, 2019, at 19:56 , Roger Guay via

Re: Remain on First Card Whilst Sending Messages to Second Card

2019-03-18 Thread Roger Guay via use-livecode
Found it!! … Well, not exactly. I THINK I was seeing the result of a script error. Once I recognized that and fixed it, it stopped navigating to the second card. Thanks very much to Kee, Craig and Tom for your help and encouragement Roger > On Mar 18, 2019, at 8:11 AM, Kee Nethery wrote: >

Re: Remain on First Card Whilst Sending Messages to Second Card

2019-03-18 Thread dunbarxx via use-livecode
Roger. Maybe make sure that screen locking is disabled everywhere, and step through a few handlers that might be the culprit? I have seen this in my travels over the years. It was always me. Craig -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

Re: Remain on First Card Whilst Sending Messages to Second Card

2019-03-18 Thread Roger Guay via use-livecode
What am I doing? Good question. I’m doing a lot of text editing and formatting in various fields of the second card from the first, and exporting them to rtfText files to the desktop. But there are definitely no scripts to navigate to the second card. Roger > On Mar 18, 2019, at 6:45 AM,

Re: Remain on First Card Whilst Sending Messages to Second Card

2019-03-18 Thread dunbarxx via use-livecode
Hi. There is no way that LC navigates to the other card at all, unless you have done something that tells it to. I make a new stack with two cards, with a handler in the card script of cd 2. On cd 1 I have a button that sends a message to cd 2, invoking that handler, and I can see the results.

Re: Remain on First Card Whilst Sending Messages to Second Card

2019-03-17 Thread Roger Guay via use-livecode
I’ll give that a try. Thanks, Tom. Roger > On Mar 17, 2019, at 8:53 PM, Tom Glod via use-livecode > wrote: > > oops forgot one: > > lock screen > lock messages (will prevent engine messages like opencard) > send "message" to card "mycard" > go to card "first card" -- come back to card >

Re: Remain on First Card Whilst Sending Messages to Second Card

2019-03-17 Thread Tom Glod via use-livecode
oops forgot one: lock screen lock messages (will prevent engine messages like opencard) send "message" to card "mycard" go to card "first card" -- come back to card unlock messages unlock screen

Re: Remain on First Card Whilst Sending Messages to Second Card

2019-03-17 Thread Tom Glod via use-livecode
try this: lock screen lock messages (will prevent engine messages like opencard) send "message" to card "mycard" of this stack unlock messages unlock screen Virus-free. www.avast.com

Remain on First Card Whilst Sending Messages to Second Card

2019-03-17 Thread Roger Guay via use-livecode
Hi Folks, I have 2 cards with buttons on the first card sending message/handlers to the second card. The trouble is that when the message is sent to the second, the second card appears. What I want is to NOT leave the first card when the handler/message is exercised on the second card. IOW, I