Re: Swipe over native scroller

2019-01-31 Thread Terry Judd via use-livecode
On 1/31/19 11:03 AM, J. Landman Gay via use-livecode wrote: >> Did you try Terry script? Elanor did something similar this in the >> Listen module, it not very refined. Terry put time in it with subtle >> time parameters. I have yet to try it. It here on the list I didn't

Re: Swipe over native scroller

2019-01-31 Thread J. Landman Gay via use-livecode
On 1/31/19 11:03 AM, J. Landman Gay via use-livecode wrote: That's similar to the handlers I'm using but they all fail because no mouseUp or touchEnd messages are ever sent if you are over a native scroller. The issue isn't with the calculations, it's because the app is never informed thar the

Re: Swipe over native scroller

2019-01-31 Thread J. Landman Gay via use-livecode
On 1/31/19 1:50 PM, J. Landman Gay via use-livecode wrote: But your script reminded me to check the scrollerEndDrag message. We don't allow horizontal scroll, so I'll have to see if the message is sent even if the scroll doesn't change. If so, that might work. I ran a test stack on an Android

Re: Swipe over native scroller

2019-01-31 Thread J. Landman Gay via use-livecode
Thursday, January 31, 2019 9:04 AM To: How to use LiveCode Cc: J. Landman Gay Subject: Re: Swipe over native scroller That's similar to the handlers I'm using but they all fail because no mouseUp or touchEnd messages are ever sent if you are over a native scroller. The issue isn't

Re: Swipe over native scroller

2019-01-31 Thread JJS via use-livecode
e, etc. -Original Message- From: use-livecode On Behalf Of J. Landman Gay via use-livecode Sent: Thursday, January 31, 2019 9:04 AM To: How to use LiveCode Cc: J. Landman Gay Subject: Re: Swipe over native scroller That's similar to the handlers I'm using but they all fail b

RE: Swipe over native scroller

2019-01-31 Thread J. Landman Gay via use-livecode
ince I don't really want to have to code bounce, etc. -Original Message- From: use-livecode On Behalf Of J. Landman Gay via use-livecode Sent: Thursday, January 31, 2019 9:04 AM To: How to use LiveCode Cc: J. Landman Gay Subject: Re: Swipe over native scroller That's similar to t

RE: Swipe over native scroller

2019-01-31 Thread Jim MacConnell via use-livecode
livecode Sent: Thursday, January 31, 2019 9:04 AM To: How to use LiveCode Cc: J. Landman Gay Subject: Re: Swipe over native scroller That's similar to the handlers I'm using but they all fail because no mouseUp or touchEnd messages are ever sent if you are over a native scroller. The is

Re: Swipe over native scroller

2019-01-31 Thread J. Landman Gay via use-livecode
That's similar to the handlers I'm using but they all fail because no mouseUp or touchEnd messages are ever sent if you are over a native scroller. The issue isn't with the calculations, it's because the app is never informed thar the swipe has completed. I'll try fiddling with touchMove again

Re: Swipe over native scroller

2019-01-31 Thread Sannyasin Brahmanathaswami via use-livecode
Did you try Terry script? Elanor did something similar this in the Listen module, it not very refined. Terry put time in it with subtle time parameters. I have yet to try it. It here on the list Terry, do we have a place for a repository for code snippits? Maybe you can put in on the forum. I

Re: Swipe over native scroller

2019-01-30 Thread J. Landman Gay via use-livecode
Thanks, I was afraid of that. I'll see if I can bump the bug report for attention. On 1/30/19 5:49 PM, Terry Judd via use-livecode wrote: Not much of a workaround I'm afraid, but for a recent app (iOS and Android) I got rid of the native scroller and used the touch messages to both scroll the

Re: Swipe over native scroller

2019-01-30 Thread Terry Judd via use-livecode
Not much of a workaround I'm afraid, but for a recent app (iOS and Android) I got rid of the native scroller and used the touch messages to both scroll the object and detect the swipes. Terry... On 31/1/19, 10:16 am, "use-livecode on behalf of J. Landman Gay via use-livecode" wrote: Has