Page 1 of 1

mouseDoubleUp not working properly for iOS

Posted: Mon Aug 08, 2016 11:20 am
by 25Apalachi
I have a scrolling field in an app and I want to allow users to select from the scrolling field by double tapping. mouseDoubleUp works perfectly for this on Windows and Mac OS apps but not on iOS. I believe this is because it's much harder to double tap the exact same spot using your finger than with a mouse. Does anyone have an effective workaround?

Re: mouseDoubleUp not working properly for iOS

Posted: Mon Aug 08, 2016 1:14 pm
by jmburnod
Hi 25Apalachi ,
I believe this is because it's much harder to double tap the exact same spot using your finger than with a mouse.
I think mousedoubleUp doesn't need exact same spot.
I met same problem to display images, mousedoubleUp works often but not ever.
In some cases I use mousedoubledown sometimes works better than mousedoubleUp on iOS
Best regards
Jean-Marc

Re: mouseDoubleUp not working properly for iOS

Posted: Mon Aug 08, 2016 10:21 pm
by joel.epsteinBUS31vi
You can get around this problem by doing this in your PreOpenStack:

Code: Select all

set the doubleClickDelta to 40
It's always worked great for me. You might want to monkey with the number of pixels

Peace.

Joel

Re: mouseDoubleUp not working properly for iOS

Posted: Tue Aug 09, 2016 9:01 am
by jmburnod
Sorry,
I said
I think mousedoubleUp doesn't need exact same spot.
but Joel is right
Jean-Marc

Re: mouseDoubleUp not working properly for iOS

Posted: Wed Aug 10, 2016 8:22 am
by 25Apalachi
joel.epsteinBUS31vi wrote:You can get around this problem by doing this in your PreOpenStack:

Code: Select all

set the doubleClickDelta to 40
It's always worked great for me. You might want to monkey with the number of pixels

Peace.

Joel
This is exactly what I needed. Thank you.