Page 1 of 1

Too sensitive Scroller on mobile device

Posted: Tue Jul 22, 2014 4:17 pm
by Jellobus
Hi All, :)

Native Scroller on mobile device seems very sensitive. it works accidentally while it is scrolling. I placed "mouseUp" handler in the field so whenever "mouseUp" message sent to the field, selected line hilites and does work. listBehaviour must on with this scroller.

Is there any trick to decrease sensitivity of the native scroller?

Cheers,

Louis

Re: Too sensitive Scroller on mobile device

Posted: Wed Jul 23, 2014 1:33 am
by keram
Hi Louis,

Without seeing your code it may be difficult for me or others to advise, but you may try with these 2 other options and see how the scroller works on your device or emulator:

1. use the scroller that Klaus provided here (it can be used for any field or group): http://forums.livecode.com/viewtopic.ph ... ing#p93753

2. try Zryip's scroller from Data Grid Helper (it may work for fields as well): http://www.aslugontheroad.com/ourproducts/2-what-is-dgh

keram

Re: Too sensitive Scroller on mobile device

Posted: Thu Jul 24, 2014 6:55 am
by Simon
Hi Louis,
I use this

Code: Select all

on scrollerDidScroll hOffset, vOffset
   mobileClearTouches
Not sure if that is what you are asking about.

Simon

Re: Too sensitive Scroller on mobile device

Posted: Tue Jul 29, 2014 7:25 pm
by Jellobus
Hi Simon,

That's excellent way!! thanks!

Cheers,

Louis