Re: What a datagrid "sees"

2017-12-06 Thread Mike Bonner via use-livecode
As a workaround, you could try a slightly different method.. local sLooping on mouseleave put false into sLooping -- stop the loop when outside the dg end mouseleave on mouseEnter if sLooping is empty then put false into sLooping if not sLooping then send "startloop" to me in 10

Re: What a datagrid "sees"

2017-12-06 Thread Bob Sneidar via use-livecode
Posted http://quality.livecode.com/show_bug.cgi?id=20747. This may be a regression from way back in the 2.9 days. Bob S > On Dec 6, 2017, at 15:04 , Bob Sneidar via use-livecode > wrote: > > Okay I have figured out what this is. the mouseControl is sometimes

Re: What a datagrid "sees"

2017-12-06 Thread Bob Sneidar via use-livecode
Okay I have figured out what this is. the mouseControl is sometimes returning the LAST object that was being pointed to, and NOT the CURRENT object being pointed to. I think this is a bug. I will try to come up with a sample stack and post it on QC. Bob S > On Dec 6, 2017, at 13:12 , Bob

What a datagrid "sees"

2017-12-06 Thread Bob Sneidar via use-livecode
Hi all. I have a mouseEnter handler in a table datagrid which is supposed to get the mouseControl. When I point at one of the populated table fields I trigger the mouseEnter, but then nothing else. I can point at another field and this time it might work. Or not. I am not sure why that is