Re: Sender of send in time

2018-07-14 Thread Dick Kriesel via use-livecode
> On Jul 13, 2018, at 1:26 AM, hh via use-livecode > wrote: > >> Bob S. wrote: >> Something in my scripts is sending a selectionChanged message in >> time to a specific datagrid when it shouldn't. How do I determine >> the sender of a send in time message? > > Simply use a a parameter: > >

Re: Sender of send in time

2018-07-13 Thread hh via use-livecode
> Bob S. wrote: > Something in my scripts is sending a selectionChanged message in > time to a specific datagrid when it shouldn't. How do I determine > the sender of a send in time message? Simply use a a parameter: send "selectionChanged " to in where identifies the sender. __

Re: Sender of send in time

2018-07-12 Thread Bob Sneidar via use-livecode
Unfortunately it's the sendee. The object receiving the message. Bob S > On Jul 12, 2018, at 12:59 , Bob Sneidar via use-livecode > wrote: > > I wonder if the target would return the sender or the sender. I'll check it > out. > > Bob S > > >> On Jul 12, 2018, at 11:57 , Richard Gaskin v

Re: Sender of send in time

2018-07-12 Thread Bob Sneidar via use-livecode
I wonder if the target would return the sender or the sender. I'll check it out. Bob S > On Jul 12, 2018, at 11:57 , Richard Gaskin via use-livecode > wrote: > > Bob Sneidar wrote: > > > I have a sticky problem here, or I should say a slippery one. > > Something in my scripts is sending a

Re: Sender of send in time

2018-07-12 Thread Richard Gaskin via use-livecode
Bob Sneidar wrote: > I have a sticky problem here, or I should say a slippery one. > Something in my scripts is sending a selectionChanged message in time > to a specific datagrid when it shouldn't. How do I determine the > sender of a send in time message? The pendingMessages and > executionCont

Re: Sender of send in time

2018-07-12 Thread Bob Sneidar via use-livecode
Hi Craig. No, because send in time allows for messages sent prior to complete execution, so whatever send in time is no longer executing. Bob S > On Jul 12, 2018, at 10:45 , dunbarxx via use-livecode > wrote: > > Hi. > > Would the "executionContexts" be of use here? > > Craig

Re: Sender of send in time

2018-07-12 Thread dunbarxx via use-livecode
Hi. Would the "executionContexts" be of use here? Craig -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubs

Re: Sender of send in time

2018-07-12 Thread Bob Sneidar via use-livecode
Nevermind I found it. But it's a good question. I had to search for "send selectionChanged" and breakpoint each statement until I hit on the correct one. Bob S > On Jul 12, 2018, at 10:31 , Bob Sneidar via use-livecode > wrote: > > Hi all. > > I have a sticky problem here, or I should say

Sender of send in time

2018-07-12 Thread Bob Sneidar via use-livecode
Hi all. I have a sticky problem here, or I should say a slippery one. Something in my scripts is sending a selectionChanged message in time to a specific datagrid when it shouldn't. How do I determine the sender of a send in time message? The pendingMessages and executionContexts are cleared b